Skip to content

Commit

Permalink
Fix typos in documentation.
Browse files Browse the repository at this point in the history
Reviewers: lldb-commits

Subscribers: lldb-commits

Differential Revision: https://reviews.llvm.org/D31282

llvm-svn: 308426
  • Loading branch information
waywardmonkeys committed Jul 19, 2017
1 parent c92c508 commit e54a9a2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lldb/scripts/interface/SBBreakpoint.i
Expand Up @@ -70,7 +70,7 @@ SBBreakpoint supports breakpoint location iteration, for example,
print('breakpoint location load addr: %s' % hex(bl.GetLoadAddress()))
print('breakpoint location condition: %s' % hex(bl.GetCondition()))
and rich comparion methods which allow the API program to use,
and rich comparison methods which allow the API program to use,
if aBreakpoint == bBreakpoint:
...
Expand Down
2 changes: 1 addition & 1 deletion lldb/scripts/interface/SBModule.i
Expand Up @@ -26,7 +26,7 @@ SBModule supports symbol iteration, for example,
saddr = symbol.GetStartAddress()
eaddr = symbol.GetEndAddress()
and rich comparion methods which allow the API program to use,
and rich comparison methods which allow the API program to use,
if thisModule == thatModule:
print('This module is the same as that module')
Expand Down
2 changes: 1 addition & 1 deletion lldb/scripts/interface/SBSymbol.i
Expand Up @@ -11,7 +11,7 @@ namespace lldb {

%feature("docstring",
"Represents the symbol possibly associated with a stack frame.
SBModule contains SBSymbol(s). SBSymbol can also be retrived from SBFrame.
SBModule contains SBSymbol(s). SBSymbol can also be retrieved from SBFrame.
See also SBModule and SBFrame."
) SBSymbol;
Expand Down

0 comments on commit e54a9a2

Please sign in to comment.