[Lldb-commits] [PATCH] D31282: Fix typos in documentation.
Bruce Mitchener via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Jul 19 02:38:55 PDT 2017
This revision was automatically updated to reflect the committed changes.
Closed by commit rL308426: Fix typos in documentation. (authored by brucem).
Repository:
rL LLVM
https://reviews.llvm.org/D31282
Files:
lldb/trunk/scripts/interface/SBBreakpoint.i
lldb/trunk/scripts/interface/SBModule.i
lldb/trunk/scripts/interface/SBSymbol.i
Index: lldb/trunk/scripts/interface/SBBreakpoint.i
===================================================================
--- lldb/trunk/scripts/interface/SBBreakpoint.i
+++ lldb/trunk/scripts/interface/SBBreakpoint.i
@@ -70,7 +70,7 @@
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:
...
Index: lldb/trunk/scripts/interface/SBSymbol.i
===================================================================
--- lldb/trunk/scripts/interface/SBSymbol.i
+++ lldb/trunk/scripts/interface/SBSymbol.i
@@ -11,7 +11,7 @@
%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;
Index: lldb/trunk/scripts/interface/SBModule.i
===================================================================
--- lldb/trunk/scripts/interface/SBModule.i
+++ lldb/trunk/scripts/interface/SBModule.i
@@ -26,7 +26,7 @@
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')
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D31282.107270.patch
Type: text/x-patch
Size: 1609 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20170719/b2ad76dc/attachment.bin>
More information about the lldb-commits
mailing list