Skip to content

Commit e54a9a2

Browse files
committedJul 19, 2017
Fix typos in documentation.
Reviewers: lldb-commits Subscribers: lldb-commits Differential Revision: https://reviews.llvm.org/D31282 llvm-svn: 308426
1 parent c92c508 commit e54a9a2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎lldb/scripts/interface/SBBreakpoint.i

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ SBBreakpoint supports breakpoint location iteration, for example,
7070
print('breakpoint location load addr: %s' % hex(bl.GetLoadAddress()))
7171
print('breakpoint location condition: %s' % hex(bl.GetCondition()))
7272
73-
and rich comparion methods which allow the API program to use,
73+
and rich comparison methods which allow the API program to use,
7474
7575
if aBreakpoint == bBreakpoint:
7676
...

‎lldb/scripts/interface/SBModule.i

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ SBModule supports symbol iteration, for example,
2626
saddr = symbol.GetStartAddress()
2727
eaddr = symbol.GetEndAddress()
2828
29-
and rich comparion methods which allow the API program to use,
29+
and rich comparison methods which allow the API program to use,
3030
3131
if thisModule == thatModule:
3232
print('This module is the same as that module')

‎lldb/scripts/interface/SBSymbol.i

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace lldb {
1111

1212
%feature("docstring",
1313
"Represents the symbol possibly associated with a stack frame.
14-
SBModule contains SBSymbol(s). SBSymbol can also be retrived from SBFrame.
14+
SBModule contains SBSymbol(s). SBSymbol can also be retrieved from SBFrame.
1515
1616
See also SBModule and SBFrame."
1717
) SBSymbol;

0 commit comments

Comments
 (0)
Please sign in to comment.