Skip to content

Commit 4fd3347

Browse files
[lldb] Fix typos in documentation (NFC)
1 parent 9e2579d commit 4fd3347

File tree

11 files changed

+12
-12
lines changed

11 files changed

+12
-12
lines changed

lldb/docs/design/overview.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Core
7272
----
7373

7474
The Core source files contain basic functionality that is required in the
75-
debugger as well as the class represeting the debugger it self (Debugger). A
75+
debugger as well as the class representing the debugger itself (Debugger). A
7676
wide variety of classes are implemented:
7777

7878
- Address (section offset addressing)

lldb/docs/doxygen.cfg.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1434,7 +1434,7 @@ PERL_PATH =
14341434
#---------------------------------------------------------------------------
14351435

14361436
# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will
1437-
# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base
1437+
# generate an inheritance diagram (in HTML, RTF and LaTeX) for classes with base
14381438
# or super classes. Setting the tag to NO turns the diagrams off. Note that
14391439
# this option is superseded by the HAVE_DOT option below. This is only a
14401440
# fallback. It is recommended to install and use dot, since it yields more

lldb/docs/lldb-for-gdb-users.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ Current breakpoints:
162162
1.1: where = Sketch`-[SKTGraphicView alignLeftEdges:] + 33 at /Projects/Sketch/SKTGraphicView.m:1405, address = 0x0000000100010d5b, resolved, hit count = 0
163163

164164
Note that each "logical" breakpoint can have multiple "locations".
165-
The logical breakpoint has an integer id, and it's locations have an
165+
The logical breakpoint has an integer id, and its locations have an
166166
id within their parent breakpoint (the two are joined by a ".",
167167
e.g. 1.1 in the example above.)
168168

lldb/docs/lldb-platform-packets.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ incompatible with the flags that gdb specifies.
113113
// 3. {optional} working directory ascii-hex encoded
114114
//
115115
// Response is F followed by the return value of the command (base 16),
116-
// followed by a another number, followed by the output of the command
116+
// followed by another number, followed by the output of the command
117117
/ in binary-escaped-data encoding.
118118

119119
//----------------------------------------------------------------------

lldb/docs/python_api_enums.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ limit the amount of information that gets parsed to only the
496496
information that is requested. These bits also can indicate what
497497
actually did get resolved during query function calls.
498498

499-
Each definition corresponds to a one of the member variables
499+
Each definition corresponds to one of the member variables
500500
in this class, and requests that that item be resolved, or
501501
indicates that the member did get resolved.
502502

lldb/docs/resources/build.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ macOS
133133
Building LLDB with CMake
134134
------------------------
135135

136-
The LLVM project is migrating to a single monolithic respository for LLVM and
136+
The LLVM project is migrating to a single monolithic repository for LLVM and
137137
its subprojects. This is the recommended way to build LLDB. Check out the
138138
source-tree with git:
139139

lldb/docs/resources/caveats.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ against Python comes with some constraints to be aware of.
2121
use it from Python 2 and vice versa.
2222

2323
2. It is not possible to build and link LLDB against one distribution on
24-
Python and use it through a interpreter coming from another distribution.
24+
Python and use it through an interpreter coming from another distribution.
2525
For example, on macOS, if you build and link against Python from
2626
python.org, you cannot import the lldb module from the Python interpreter
2727
installed with Homebrew.

lldb/docs/resources/contributing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Please refer to the `LLVM Getting Started Guide
88
<https://llvm.org/docs/GettingStarted.html>`_ for general information on how to
99
get started on the LLVM project. A detailed explanation on how to build and
1010
test LLDB can be found in the `build instructions <build.html>`_ and `test
11-
instructions <test.html>`_ respecitvely.
11+
instructions <test.html>`_ respectively.
1212

1313
Contributing to LLDB
1414
--------------------

lldb/docs/resources/test.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ Running tests in QEMU System Emulation Environment
365365

366366
QEMU can be used to test LLDB in an emulation environment in the absence of
367367
actual hardware. `QEMU based testing <https://lldb.llvm.org/use/qemu-testing.html>`_
368-
page describes how to setup a emulation environment using QEMU helper scripts
368+
page describes how to setup an emulation environment using QEMU helper scripts
369369
found under llvm-project/lldb/scripts/lldb-test-qemu. These scripts currently
370370
work with Arm or AArch64, but support for other architectures can be added easily.
371371

lldb/docs/use/python-reference.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -787,7 +787,7 @@ Writing lldb frame recognizers in Python
787787
Frame recognizers allow for retrieving information about special frames based
788788
on ABI, arguments or other special properties of that frame, even without
789789
source code or debug info. Currently, one use case is to extract function
790-
arguments that would otherwise be unaccesible, or augment existing arguments.
790+
arguments that would otherwise be inaccessible, or augment existing arguments.
791791

792792
Adding a custom frame recognizer is done by implementing a Python class and
793793
using the 'frame recognizer add' command. The Python class should have a

lldb/docs/use/tutorial.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ breakpoint on all the methods that implement that selector in the classes in
246246
your program. Similarly, a file and line breakpoint might result in multiple
247247
locations if that file and line were inlined in different places in your code.
248248

249-
The logical breakpoint has an integer id, and it's locations have an id within
249+
The logical breakpoint has an integer id, and its locations have an id within
250250
their parent breakpoint (the two are joined by a ".", e.g. 1.1 in the example
251251
above.)
252252

@@ -324,7 +324,7 @@ do:
324324
Breakpoint Names
325325
----------------
326326

327-
Breakpoints carry two orthognal sets of information: one specifies where to set the breakpoint, and the other how to react when the breakpoint is hit. The latter set of information (e.g. commands, conditions, hit-count, auto-continue...) we call breakpoint options.
327+
Breakpoints carry two orthogonal sets of information: one specifies where to set the breakpoint, and the other how to react when the breakpoint is hit. The latter set of information (e.g. commands, conditions, hit-count, auto-continue...) we call breakpoint options.
328328

329329
It is fairly common to want to apply one set of options to a number of breakpoints. For instance, you might want to check that self == nil and if it is, print a backtrace and continue, on a number of methods. One convenient way to do that would be to make all the breakpoints, then configure the options with:
330330

0 commit comments

Comments
 (0)