Skip to content

Commit 19e2991

Browse files
[lldb] Proofread formatting.rst (#149768)
1 parent afdd30d commit 19e2991

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lldb/docs/use/formatting.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Frame and Thread Format
33

44
LLDB has a facility to allow users to define the format of the information that
55
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
77
thread stopped and where:
88

99
::
@@ -192,7 +192,7 @@ you to desensitize control characters and also emit non-printable characters.
192192
Desensitizing Characters in the Format String
193193
---------------------------------------------
194194

195-
The backslash control character allows your to enter the typical ``\a``,
195+
The backslash control character allows you to enter the typical ``\a``,
196196
``\b``, ``\f``, ``\n``, ``\r``, ``\t``, ``\v``, ``\\``, characters and along
197197
with the standard octal representation ``\0123`` and hex ``\xAB`` characters.
198198
This allows you to enter escape characters into your format strings and will
@@ -202,8 +202,8 @@ Scoping
202202
-------
203203

204204
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
207207
starts with ``{`` and ends with ``}``. For example in order to only display the
208208
current frame line table entry basename and line number when the information is
209209
available for the current frame:
@@ -269,7 +269,7 @@ thread information:
269269
frame #0: 0x0000000100000e85 a.out`main + 4 at test.c:19
270270
frame #1: 0x0000000100000e40 a.out`start + 52
271271

272-
The frame related variables are:
272+
The frame-related variables are:
273273

274274
- ``${file.*}``
275275
- ``${frame.*}``

0 commit comments

Comments
 (0)