Skip to content

[lldb][Docs] Fix typo in tutorial.rst #111326

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lldb/docs/use/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
----------------
Expand Down
Loading