[Lldb-commits] [PATCH] D31282: Fix typos in documentation.

Bruce Mitchener via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Thu Mar 23 06:41:10 PDT 2017


brucem created this revision.

https://reviews.llvm.org/D31282

Files:
  scripts/interface/SBBreakpoint.i
  scripts/interface/SBModule.i
  scripts/interface/SBSymbol.i


Index: scripts/interface/SBSymbol.i
===================================================================
--- scripts/interface/SBSymbol.i
+++ 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: scripts/interface/SBModule.i
===================================================================
--- scripts/interface/SBModule.i
+++ 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')
Index: scripts/interface/SBBreakpoint.i
===================================================================
--- scripts/interface/SBBreakpoint.i
+++ 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:
         ...


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D31282.92786.patch
Type: text/x-patch
Size: 1510 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20170323/2b38007b/attachment-0001.bin>


More information about the lldb-commits mailing list