[Lldb-commits] [PATCH] D121800: [LLDB] Change enumaration to enumeration

Pavel Labath via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Wed Mar 16 07:31:54 PDT 2022


This revision was automatically updated to reflect the committed changes.
Closed by commit rGd58ef6df0d4a: [LLDB] Change enumaration to enumeration (authored by hawkinsw, committed by labath).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D121800/new/

https://reviews.llvm.org/D121800

Files:
  lldb/source/Commands/CommandObjectTarget.cpp
  lldb/source/Commands/Options.td


Index: lldb/source/Commands/Options.td
===================================================================
--- lldb/source/Commands/Options.td
+++ lldb/source/Commands/Options.td
@@ -863,7 +863,7 @@
 
 let Command = "target dependents" in {
   def dependents_no_dependents : Option<"no-dependents", "d">, Group<1>,
-    OptionalEnumArg<"Value", "OptionEnumValues(g_dependents_enumaration)">,
+    OptionalEnumArg<"Value", "OptionEnumValues(g_dependents_enumeration)">,
     Desc<"Whether or not to load dependents when creating a target. If the "
          "option is not specified, the value is implicitly 'default'. If the "
          "option is specified but without a value, the value is implicitly "
Index: lldb/source/Commands/CommandObjectTarget.cpp
===================================================================
--- lldb/source/Commands/CommandObjectTarget.cpp
+++ lldb/source/Commands/CommandObjectTarget.cpp
@@ -137,7 +137,7 @@
 
 // Note that the negation in the argument name causes a slightly confusing
 // mapping of the enum values.
-static constexpr OptionEnumValueElement g_dependents_enumaration[] = {
+static constexpr OptionEnumValueElement g_dependents_enumeration[] = {
     {
         eLoadDependentsDefault,
         "default",


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D121800.415828.patch
Type: text/x-patch
Size: 1257 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20220316/abc5abd4/attachment-0001.bin>


More information about the lldb-commits mailing list