Author: Ryan Mansfield Date: 2026-01-30T13:27:26Z New Revision: ec86761b63c0c7808e1714c7b27a4017eeece93d
URL: https://github.com/llvm/llvm-project/commit/ec86761b63c0c7808e1714c7b27a4017eeece93d DIFF: https://github.com/llvm/llvm-project/commit/ec86761b63c0c7808e1714c7b27a4017eeece93d.diff LOG: [lldb] Fix typos in property descriptions. (#178757) Added: Modified: lldb/source/Core/CoreProperties.td lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDBProperties.td Removed: ################################################################################ diff --git a/lldb/source/Core/CoreProperties.td b/lldb/source/Core/CoreProperties.td index fafcb3b66e102..2bc62464f91bd 100644 --- a/lldb/source/Core/CoreProperties.td +++ b/lldb/source/Core/CoreProperties.td @@ -131,7 +131,7 @@ let Definition = "debugger" in { def StopShowColumnAnsiPrefix: Property<"stop-show-column-ansi-prefix", "String">, Global, DefaultStringValue<"${ansi.underline}">, - Desc<"When displaying the column marker in a color-enabled terminal, use the ANSI terminal code specified in this format at the immediately before the column to be marked.">; + Desc<"When displaying the column marker in a color-enabled terminal, use the ANSI terminal code specified in this format immediately before the column to be marked.">; def StopShowColumnAnsiSuffix: Property<"stop-show-column-ansi-suffix", "String">, Global, DefaultStringValue<"${ansi.normal}">, @@ -139,7 +139,7 @@ let Definition = "debugger" in { def StopShowLineMarkerAnsiPrefix: Property<"stop-show-line-ansi-prefix", "String">, Global, DefaultStringValue<"${ansi.fg.yellow}">, - Desc<"When displaying the line marker in a color-enabled terminal, use the ANSI terminal code specified in this format at the immediately before the line to be marked.">; + Desc<"When displaying the line marker in a color-enabled terminal, use the ANSI terminal code specified in this format immediately before the line to be marked.">; def StopShowLineMarkerAnsiSuffix: Property<"stop-show-line-ansi-suffix", "String">, Global, DefaultStringValue<"${ansi.normal}">, @@ -215,7 +215,7 @@ let Definition = "debugger" in { : Property<"disable-ansi-suffix", "String">, Global, DefaultStringValue<"${ansi.normal}">, - Desc<"When somehing has been disabled in a color-enabled terminal, use " + Desc<"When something has been disabled in a color-enabled terminal, use " "the ANSI terminal code specified immediately after whatever has " "been disabled.">; diff --git a/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDBProperties.td b/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDBProperties.td index 35875def046a5..329b495e8f04f 100644 --- a/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDBProperties.td +++ b/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDBProperties.td @@ -7,7 +7,7 @@ let Definition = "symbolfilepdb" in { EnumValues<"OptionEnumValues(g_pdb_reader_enums)">, Desc<"Selects the reader for PDB symbol files. " "The native PDB reader that uses LLVM's PDB support is always available (value: 'native'). " - "Secondly, the DIA PDB reader is only available if LLVM was comppiled with Microsoft's DIA SDK on Windows (value: 'DIA'). " + "Secondly, the DIA PDB reader is only available if LLVM was compiled with Microsoft's DIA SDK on Windows (value: 'DIA'). " "By default, the DIA PDB reader is used if available. " "The LLDB_USE_NATIVE_PDB_READER environment variable can be used to switch to the native reader when this setting has the default value. " "Otherwise, the setting always has priority.">; _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
