@@ -3,7 +3,7 @@ Frame and Thread Format
3
3
4
4
LLDB has a facility to allow users to define the format of the information that
5
5
generates the descriptions for threads and stack frames. Typically when your
6
- program stops at a breakpoint you will get two lines that describes why your
6
+ program stops at a breakpoint you will get two lines that describe why your
7
7
thread stopped and where:
8
8
9
9
::
@@ -192,7 +192,7 @@ you to desensitize control characters and also emit non-printable characters.
192
192
Desensitizing Characters in the Format String
193
193
---------------------------------------------
194
194
195
- The backslash control character allows your to enter the typical ``\a ``,
195
+ The backslash control character allows you to enter the typical ``\a ``,
196
196
``\b ``, ``\f ``, ``\n ``, ``\r ``, ``\t ``, ``\v ``, ``\\ ``, characters and along
197
197
with the standard octal representation ``\0123 `` and hex ``\xAB `` characters.
198
198
This allows you to enter escape characters into your format strings and will
@@ -202,8 +202,8 @@ Scoping
202
202
-------
203
203
204
204
Many times the information that you might have in your prompt might not be
205
- available and you won`` t want it to print out if it isn`` t valid. To take care
206
- of this you can enclose everything that must resolve into a scope. A scope is
205
+ available and you won' t want it to print out if it isn' t valid. To take care
206
+ of this you can enclose everything that must resolve into a scope. A scope
207
207
starts with ``{ `` and ends with ``} ``. For example in order to only display the
208
208
current frame line table entry basename and line number when the information is
209
209
available for the current frame:
@@ -269,7 +269,7 @@ thread information:
269
269
frame #0: 0x0000000100000e85 a.out`main + 4 at test.c:19
270
270
frame #1: 0x0000000100000e40 a.out`start + 52
271
271
272
- The frame related variables are:
272
+ The frame- related variables are:
273
273
274
274
- ``${file.*} ``
275
275
- ``${frame.*} ``
0 commit comments