[Lldb-commits] [lldb] 646aa81 - [lldb][Docs] Fix typo in `tutorial.rst` (#111326)

via lldb-commits lldb-commits at lists.llvm.org
Mon Oct 7 21:29:42 PDT 2024


Author: 苏灵素@夏日限定
Date: 2024-10-07T21:29:39-07:00
New Revision: 646aa817d2944f78638ca5fc1d037bff5e1fd490

URL: https://github.com/llvm/llvm-project/commit/646aa817d2944f78638ca5fc1d037bff5e1fd490
DIFF: https://github.com/llvm/llvm-project/commit/646aa817d2944f78638ca5fc1d037bff5e1fd490.diff

LOG: [lldb][Docs] Fix typo in `tutorial.rst` (#111326)

Added: 
    

Modified: 
    lldb/docs/use/tutorial.rst

Removed: 
    


################################################################################
diff  --git a/lldb/docs/use/tutorial.rst b/lldb/docs/use/tutorial.rst
index 76e8ac4aeab89c..7bfe1743b917f6 100644
--- a/lldb/docs/use/tutorial.rst
+++ b/lldb/docs/use/tutorial.rst
@@ -210,7 +210,7 @@ you will have to indicate these are not option markers by putting ``--`` after t
 command name, but before your command string.
 
 LLDB also has a built-in Python interpreter, which is accessible by the
-``"script`` command. All the functionality of the debugger is available as classes
+``script`` command. All the functionality of the debugger is available as classes
 in the Python interpreter, so the more complex commands that in GDB you would
 introduce with the ``define`` command can be done by writing Python functions
 using the LLDB Python library, then loading the scripts into your running
@@ -331,8 +331,8 @@ do:
 
 ::
 
-   (lldb) help <breakpt-id> <breakpt-id> -- Breakpoint ID's consist major and
-   minor numbers; the major etc...
+   (lldb) help <breakpt-id>
+   <breakpt-id> -- Breakpoint ID's consist major and minor numbers; the major etc...
 
 Breakpoint Names
 ----------------


        


More information about the lldb-commits mailing list