[Lldb-commits] [PATCH] D100053: Fixed bug issue #42017

Sushma Unnibhavi via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Wed Apr 7 10:46:37 PDT 2021


sushmaunnibhavi created this revision.
sushmaunnibhavi added reviewers: JDevlieghere, Shivamgupta1234.
sushmaunnibhavi requested review of this revision.
Herald added a project: LLDB.
Herald added a subscriber: lldb-commits.

Typo fix: lldb tutorial

      

Fixed typo 1, change "For instance" to "For instance,".

      

Fixed typo 2, some right parentheses have the period before them, some after.

      

Fixed typo 3, changed "an" to "a", "an" to "can".

      

Fixed typo 4, changed "Also" to "Also,".


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D100053

Files:
  lldb/docs/use/tutorial.rst


Index: lldb/docs/use/tutorial.rst
===================================================================
--- lldb/docs/use/tutorial.rst
+++ lldb/docs/use/tutorial.rst
@@ -28,7 +28,7 @@
 
 Options can be placed anywhere on the command line, but if the arguments begin
 with a "-" then you have to tell lldb that you're done with options for the
-current command by adding an option termination: "--" So for instance if you
+current command by adding an option termination: "--" So for instance, if you
 want to launch a process and give the "process launch" command the
 "--stop-at-entry" option, yet you want the process you are about to launch to
 be launched with the arguments "-program_arg value", you would type:
@@ -121,7 +121,7 @@
 
 lldb also supports command completion for source file names, symbol names, file
 names, etc. Completion is initiated by a hitting a TAB. Individual options in a
-command can have different completers, so for instance the "--file <path>"
+command can have different completers, so for instance, the "--file <path>"
 option in "breakpoint" completes to source files, the "--shlib <path>" option
 to currently loaded shared libraries, etc. We can even do things like if you
 specify "--shlib <path>", and are completing on "--file <path>", we will only
@@ -134,7 +134,7 @@
 for each matching command.
 
 Finally, there is a mechanism to construct aliases for commonly used commands.
-So for instance if you get annoyed typing:
+So for instance, if you get annoyed typing:
 
 ::
 
@@ -162,10 +162,10 @@
 One alias of note that we do include by popular demand is a weak emulator of
 gdb's "break" command. It doesn't try to do everything that gdb's break command
 does (for instance, it doesn't handle foo.c::bar. But it mostly works, and
-makes the transition easier. Also by popular demand, it is aliased to b. If you
+makes the transition easier. Also, by popular demand, it is aliased to b. If you
 actually want to learn the lldb command set natively, that means it will get in
 the way of the rest of the breakpoint commands. Fortunately, if you don't like
-one of our aliases, you an easily get rid of it by running (for example):
+one of our aliases, you can easily get rid of it by running (for example):
 
 ::
 
@@ -183,7 +183,7 @@
 options are stripped off, the rest of the command string is passed
 uninterpreted to the command. This is convenient for commands whose arguments
 might be some complex expression that would be painful to backslash protect.
-For instance the "expression" command is a "raw" command for obvious reasons.
+For instance, the "expression" command is a "raw" command for obvious reasons.
 The "help" output for a command will tell you if it is "raw" or not, so you
 know what to expect. The one thing you have to watch out for is that since raw
 commands still can have options, if your command string has dashes in it,
@@ -248,9 +248,9 @@
 
 The logical breakpoint has an integer id, and its locations have an id within
 their parent breakpoint (the two are joined by a ".", e.g. 1.1 in the example
-above.)
+above).
 
-Also the logical breakpoints remain live so that if another shared library were
+Also, the logical breakpoints remain live so that if another shared library were
 to be loaded that had another implementation of the "alignLeftEdges:" selector,
 the new location would be added to breakpoint 1 (e.g. a "1.2" breakpoint would
 be set on the newly loaded selector).
@@ -284,7 +284,7 @@
 
 You can delete, disable, set conditions and ignore counts either on all the
 locations generated by your logical breakpoint, or on any one of the particular
-locations your specification resolved to. For instance if we wanted to add a
+locations your specification resolved to. For instance, if we wanted to add a
 command to print a backtrace when we hit this breakpoint we could do:
 
 ::
@@ -299,7 +299,7 @@
 option. Use "--script" if you want to implement your breakpoint command using
 the Python script instead.
 
-This is an convenient point to bring up another feature of the lldb command
+This is a convenient point to bring up another feature of the lldb command
 help. Do:
 
 ::


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D100053.335866.patch
Type: text/x-patch
Size: 4167 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20210407/1bdb231c/attachment.bin>


More information about the lldb-commits mailing list