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:
         ...


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:
         ...
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
  • [Lldb-commits] [PATCH] D3... Bruce Mitchener via Phabricator via lldb-commits

Reply via email to