Skip to content

Commit bfab18d

Browse files
committed
[lldb] Remove "(i.e. ANSI)" from several property descriptions.
Addresses Adrian's feedback from D121062.
1 parent 845f0bb commit bfab18d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lldb/source/Core/CoreProperties.td

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -98,19 +98,19 @@ let Definition = "debugger" in {
9898
def StopShowColumnAnsiPrefix: Property<"stop-show-column-ansi-prefix", "String">,
9999
Global,
100100
DefaultStringValue<"${ansi.underline}">,
101-
Desc<"When displaying the column marker in a color-enabled (i.e. ANSI) terminal, use the ANSI terminal code specified in this format at the immediately before the column to be marked.">;
101+
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.">;
102102
def StopShowColumnAnsiSuffix: Property<"stop-show-column-ansi-suffix", "String">,
103103
Global,
104104
DefaultStringValue<"${ansi.normal}">,
105-
Desc<"When displaying the column marker in a color-enabled (i.e. ANSI) terminal, use the ANSI terminal code specified in this format immediately after the column to be marked.">;
105+
Desc<"When displaying the column marker in a color-enabled terminal, use the ANSI terminal code specified in this format immediately after the column to be marked.">;
106106
def StopShowLineMarkerAnsiPrefix: Property<"stop-show-line-ansi-prefix", "String">,
107107
Global,
108108
DefaultStringValue<"${ansi.fg.yellow}">,
109-
Desc<"When displaying the line marker in a color-enabled (i.e. ANSI) terminal, use the ANSI terminal code specified in this format at the immediately before the line to be marked.">;
109+
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.">;
110110
def StopShowLineMarkerAnsiSuffix: Property<"stop-show-line-ansi-suffix", "String">,
111111
Global,
112112
DefaultStringValue<"${ansi.normal}">,
113-
Desc<"When displaying the line marker in a color-enabled (i.e. ANSI) terminal, use the ANSI terminal code specified in this format immediately after the line to be marked.">;
113+
Desc<"When displaying the line marker in a color-enabled terminal, use the ANSI terminal code specified in this format immediately after the line to be marked.">;
114114
def TerminalWidth: Property<"term-width", "SInt64">,
115115
Global,
116116
DefaultUnsignedValue<80>,
@@ -166,9 +166,9 @@ let Definition = "debugger" in {
166166
def ShowAutosuggestionAnsiPrefix: Property<"show-autosuggestion-ansi-prefix", "String">,
167167
Global,
168168
DefaultStringValue<"${ansi.faint}">,
169-
Desc<"When displaying suggestion in a color-enabled (i.e. ANSI) terminal, use the ANSI terminal code specified in this format immediately before the suggestion.">;
169+
Desc<"When displaying suggestion in a color-enabled terminal, use the ANSI terminal code specified in this format immediately before the suggestion.">;
170170
def ShowAutosuggestionAnsiSuffix: Property<"show-autosuggestion-ansi-suffix", "String">,
171171
Global,
172172
DefaultStringValue<"${ansi.normal}">,
173-
Desc<"When displaying suggestion in a color-enabled (i.e. ANSI) terminal, use the ANSI terminal code specified in this format immediately after the suggestion.">;
173+
Desc<"When displaying suggestion in a color-enabled terminal, use the ANSI terminal code specified in this format immediately after the suggestion.">;
174174
}

0 commit comments

Comments
 (0)