summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2017-07-29 21:31:51 +0000
committerDimitry Andric <dim@FreeBSD.org>2017-07-29 21:31:51 +0000
commite74d4ea48caeee19d9d7f8223340152a0fde11ef (patch)
tree3a5729183486760b465440362108c58a47426e76
parenta884e649599e13d58ce6d2b2a0ce8091ceb48dac (diff)
downloadsrc-test2-e74d4ea48caeee19d9d7f8223340152a0fde11ef.tar.gz
src-test2-e74d4ea48caeee19d9d7f8223340152a0fde11ef.zip
Notes
Notes: svn path=/vendor/lldb/dist/; revision=321700 svn path=/vendor/lldb/lldb-release_50-r311219/; revision=322736; tag=vendor/lldb/lldb-release_50-r311219
-rw-r--r--include/lldb/API/SBAttachInfo.h2
-rw-r--r--include/lldb/API/SBBreakpoint.h4
-rw-r--r--include/lldb/API/SBProcess.h2
-rw-r--r--scripts/interface/SBBreakpoint.i2
-rw-r--r--scripts/interface/SBModule.i2
-rw-r--r--scripts/interface/SBSymbol.i2
6 files changed, 7 insertions, 7 deletions
diff --git a/include/lldb/API/SBAttachInfo.h b/include/lldb/API/SBAttachInfo.h
index 0c52218f57cd..7ae006908ccc 100644
--- a/include/lldb/API/SBAttachInfo.h
+++ b/include/lldb/API/SBAttachInfo.h
@@ -162,7 +162,7 @@ public:
/// Get the listener that will be used to receive process events.
///
/// If no listener has been set via a call to
- /// SBLaunchInfo::SetListener(), then an invalid SBListener will be
+ /// SBAttachInfo::SetListener(), then an invalid SBListener will be
/// returned (SBListener::IsValid() will return false). If a listener
/// has been set, then the valid listener object will be returned.
//----------------------------------------------------------------------
diff --git a/include/lldb/API/SBBreakpoint.h b/include/lldb/API/SBBreakpoint.h
index d3f22f39ab00..9abc9cd39dcb 100644
--- a/include/lldb/API/SBBreakpoint.h
+++ b/include/lldb/API/SBBreakpoint.h
@@ -154,9 +154,9 @@ public:
SBBreakpoint FindBreakpointByID(lldb::break_id_t);
- void Append(const SBBreakpoint &sb_file);
+ void Append(const SBBreakpoint &sb_bkpt);
- bool AppendIfUnique(const SBBreakpoint &sb_file);
+ bool AppendIfUnique(const SBBreakpoint &sb_bkpt);
void AppendByID(lldb::break_id_t id);
diff --git a/include/lldb/API/SBProcess.h b/include/lldb/API/SBProcess.h
index 0ee3a989d1b6..d57d5ce04f59 100644
--- a/include/lldb/API/SBProcess.h
+++ b/include/lldb/API/SBProcess.h
@@ -350,7 +350,7 @@ public:
bool IsInstrumentationRuntimePresent(InstrumentationRuntimeType type);
- // Save the state of the process in a core file (or mini dump on Windows).
+ /// Save the state of the process in a core file (or mini dump on Windows).
lldb::SBError SaveCore(const char *file_name);
//------------------------------------------------------------------
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;