summaryrefslogtreecommitdiff
path: root/scripts/interface
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/interface')
-rw-r--r--scripts/interface/SBBreakpoint.i2
-rw-r--r--scripts/interface/SBModule.i2
-rw-r--r--scripts/interface/SBSymbol.i2
3 files changed, 3 insertions, 3 deletions
diff --git a/scripts/interface/SBBreakpoint.i b/scripts/interface/SBBreakpoint.i
index 22c4c2174f3b..95bc0cda0051 100644
--- a/scripts/interface/SBBreakpoint.i
+++ b/scripts/interface/SBBreakpoint.i
@@ -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:
...
diff --git a/scripts/interface/SBModule.i b/scripts/interface/SBModule.i
index b1b6d2a7ca3d..71a2198609d6 100644
--- a/scripts/interface/SBModule.i
+++ b/scripts/interface/SBModule.i
@@ -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')
diff --git a/scripts/interface/SBSymbol.i b/scripts/interface/SBSymbol.i
index b6717055e486..a61fda4920dd 100644
--- a/scripts/interface/SBSymbol.i
+++ b/scripts/interface/SBSymbol.i
@@ -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;