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

Will Hawkins via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Wed Mar 16 06:45:36 PDT 2022


hawkinsw created this revision.
hawkinsw added reviewers: clayborg, zequanwu, labath.
Herald added a project: All.
hawkinsw requested review of this revision.
Herald added a project: LLDB.
Herald added a subscriber: lldb-commits.

Change enumaration to enumeration in code handling LLDB help output.


Repository:
  rG LLVM Github Monorepo

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.415809.patch
Type: text/x-patch
Size: 1257 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20220316/d28f3f8a/attachment-0001.bin>


More information about the lldb-commits mailing list