diff options
author | Will Hawkins <hawkinsw@obs.cr> | 2022-03-16 15:03:42 +0100 |
---|---|---|
committer | Pavel Labath <pavel@labath.sk> | 2022-03-16 15:31:25 +0100 |
commit | d58ef6df0d4a248404810bd1b048a0a8a63cd62b (patch) | |
tree | e7afa283c0fcb1c30e0b7a25bdb5dfc4e71eed37 /lldb/source/Commands/CommandObjectTarget.cpp | |
parent | fe93395b92d5e0bdb41871335d1695d8a67142fa (diff) | |
download | llvm-d58ef6df0d4a248404810bd1b048a0a8a63cd62b.zip llvm-d58ef6df0d4a248404810bd1b048a0a8a63cd62b.tar.gz llvm-d58ef6df0d4a248404810bd1b048a0a8a63cd62b.tar.bz2 |
[LLDB] Change enumaration to enumeration
Change enumaration to enumeration in code handling LLDB help output.
Reviewed By: labath
Differential Revision: https://reviews.llvm.org/D121800
Diffstat (limited to 'lldb/source/Commands/CommandObjectTarget.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectTarget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectTarget.cpp b/lldb/source/Commands/CommandObjectTarget.cpp index 39f3af7..1d33723 100644 --- a/lldb/source/Commands/CommandObjectTarget.cpp +++ b/lldb/source/Commands/CommandObjectTarget.cpp @@ -137,7 +137,7 @@ static uint32_t DumpTargetList(TargetList &target_list, // 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", |