diff options
-rw-r--r-- | lldb/examples/summaries/cocoa/NSBundle.py | 2 | ||||
-rw-r--r-- | lldb/include/lldb/API/SBStream.h | 2 | ||||
-rw-r--r-- | lldb/include/lldb/Core/ArchSpec.h | 2 | ||||
-rw-r--r-- | lldb/include/lldb/Utility/CleanUp.h | 4 | ||||
-rw-r--r-- | lldb/scripts/Python/interface/SBStream.i | 2 | ||||
-rw-r--r-- | lldb/source/Commands/CommandObjectFrame.cpp | 2 | ||||
-rw-r--r-- | lldb/source/Expression/Materializer.cpp | 2 | ||||
-rw-r--r-- | lldb/source/Target/Process.cpp | 4 | ||||
-rw-r--r-- | lldb/tools/lldb-mi/MICmnResources.cpp | 2 | ||||
-rw-r--r-- | lldb/tools/lldb-mi/MIUtilFileStd.cpp | 4 | ||||
-rw-r--r-- | lldb/www/cpp_reference/html/SBStream_8h_source.html | 2 | ||||
-rw-r--r-- | lldb/www/python_reference/_lldb'-module.html | 2 | ||||
-rw-r--r-- | lldb/www/python_reference/lldb-pysrc.html | 2 | ||||
-rw-r--r-- | lldb/www/python_reference/lldb.SBStream-class.html | 2 |
14 files changed, 17 insertions, 17 deletions
diff --git a/lldb/examples/summaries/cocoa/NSBundle.py b/lldb/examples/summaries/cocoa/NSBundle.py index 1f6a7dd39d8..5fd83f8e89f 100644 --- a/lldb/examples/summaries/cocoa/NSBundle.py +++ b/lldb/examples/summaries/cocoa/NSBundle.py @@ -54,7 +54,7 @@ class NSBundleKnown_SummaryProvider: self.sys_params.types_cache.NSString) my_string = text.GetSummary() if (my_string == None) or (my_string == ''): - statistics.metric_hit('unknown_class',str(self.valobj.GetName()) + " triggered unkown pointer location") + statistics.metric_hit('unknown_class',str(self.valobj.GetName()) + " triggered unknown pointer location") return NSBundleUnknown_SummaryProvider(self.valobj, self.sys_params).url_text() else: statistics.metric_hit('code_notrun',self.valobj) diff --git a/lldb/include/lldb/API/SBStream.h b/lldb/include/lldb/API/SBStream.h index f77b7b7a8ef..fb69c12f0a9 100644 --- a/lldb/include/lldb/API/SBStream.h +++ b/lldb/include/lldb/API/SBStream.h @@ -51,7 +51,7 @@ public: RedirectToFileDescriptor (int fd, bool transfer_fh_ownership); // If the stream is redirected to a file, forget about the file and if - // ownership of the file was transfered to this object, close the file. + // ownership of the file was transferred to this object, close the file. // If the stream is backed by a local cache, clear this cache. void Clear (); diff --git a/lldb/include/lldb/Core/ArchSpec.h b/lldb/include/lldb/Core/ArchSpec.h index 03f6e68ca79..925204a91f3 100644 --- a/lldb/include/lldb/Core/ArchSpec.h +++ b/lldb/include/lldb/Core/ArchSpec.h @@ -312,7 +312,7 @@ public: /// /// @param[in] cpu The required CPU type. /// - /// @return True if the object and CPU type were sucessfully set. + /// @return True if the object and CPU type were successfully set. //------------------------------------------------------------------ bool SetArchitecture (ArchitectureType arch_type, diff --git a/lldb/include/lldb/Utility/CleanUp.h b/lldb/include/lldb/Utility/CleanUp.h index 48ff2c7cfe5..9dd3ca5fe12 100644 --- a/lldb/include/lldb/Utility/CleanUp.h +++ b/lldb/include/lldb/Utility/CleanUp.h @@ -163,7 +163,7 @@ public: //---------------------------------------------------------------------- // Cancels the cleanup that would have been called on "m_current_value" // if it was valid. This function can be used to release the value - // contained in this object so ownership can be transfered to the caller. + // contained in this object so ownership can be transferred to the caller. //---------------------------------------------------------------------- value_type release () @@ -296,7 +296,7 @@ public: //---------------------------------------------------------------------- // Cancels the cleanup that would have been called on "m_current_value" // if it was valid. This function can be used to release the value - // contained in this object so ownership can be transfered to the caller. + // contained in this object so ownership can be transferred to the caller. //---------------------------------------------------------------------- value_type release () diff --git a/lldb/scripts/Python/interface/SBStream.i b/lldb/scripts/Python/interface/SBStream.i index 052fa8f9bd3..f634def72b1 100644 --- a/lldb/scripts/Python/interface/SBStream.i +++ b/lldb/scripts/Python/interface/SBStream.i @@ -89,7 +89,7 @@ public: %feature("docstring", " //-------------------------------------------------------------------------- /// If the stream is redirected to a file, forget about the file and if - /// ownership of the file was transfered to this object, close the file. + /// ownership of the file was transferred to this object, close the file. /// If the stream is backed by a local cache, clear this cache. //-------------------------------------------------------------------------- ") Clear; diff --git a/lldb/source/Commands/CommandObjectFrame.cpp b/lldb/source/Commands/CommandObjectFrame.cpp index 45ff2c96719..ce540a5c310 100644 --- a/lldb/source/Commands/CommandObjectFrame.cpp +++ b/lldb/source/Commands/CommandObjectFrame.cpp @@ -471,7 +471,7 @@ protected: if (regex.GetErrorAsCString(regex_error, sizeof(regex_error))) result.GetErrorStream().Printf ("error: %s\n", regex_error); else - result.GetErrorStream().Printf ("error: unkown regex error when compiling '%s'\n", name_cstr); + result.GetErrorStream().Printf ("error: unknown regex error when compiling '%s'\n", name_cstr); } } else // No regex, either exact variable names or variable expressions. diff --git a/lldb/source/Expression/Materializer.cpp b/lldb/source/Expression/Materializer.cpp index bfe73539c24..b11921635e5 100644 --- a/lldb/source/Expression/Materializer.cpp +++ b/lldb/source/Expression/Materializer.cpp @@ -95,7 +95,7 @@ public: } if (log) - log->Printf("Allocated %s (0x%" PRIx64 ") sucessfully", m_persistent_variable_sp->GetName().GetCString(), mem); + log->Printf("Allocated %s (0x%" PRIx64 ") successfully", m_persistent_variable_sp->GetName().GetCString(), mem); // Put the location of the spare memory into the live data of the ValueObject. diff --git a/lldb/source/Target/Process.cpp b/lldb/source/Target/Process.cpp index b4e88bd453f..3a8866c3fd0 100644 --- a/lldb/source/Target/Process.cpp +++ b/lldb/source/Target/Process.cpp @@ -1857,7 +1857,7 @@ Process::CreateBreakpointSite (const BreakpointLocationSP &owner, bool use_hardw symbol->GetAddress().GetLoadAddress(&m_target), owner->GetBreakpoint().GetID(), owner->GetID(), - error.AsCString() ? error.AsCString() : "unkown error"); + error.AsCString() ? error.AsCString() : "unknown error"); return LLDB_INVALID_BREAK_ID; } Address resolved_address(load_addr); @@ -1905,7 +1905,7 @@ Process::CreateBreakpointSite (const BreakpointLocationSP &owner, bool use_hardw load_addr, owner->GetBreakpoint().GetID(), owner->GetID(), - error.AsCString() ? error.AsCString() : "unkown error"); + error.AsCString() ? error.AsCString() : "unknown error"); } } } diff --git a/lldb/tools/lldb-mi/MICmnResources.cpp b/lldb/tools/lldb-mi/MICmnResources.cpp index 20c271ae8ed..08ac2f0edfe 100644 --- a/lldb/tools/lldb-mi/MICmnResources.cpp +++ b/lldb/tools/lldb-mi/MICmnResources.cpp @@ -192,7 +192,7 @@ const CMICmnResources::SRsrcTextData CMICmnResources::ms_pResourceId2TextData[] { IDS_WORD_NOT, "not" }, { IDS_WORD_INVALIDEMPTY, "<empty>" }, { IDS_WORD_INVALIDNULLPTR, "<NULL ptr>" }, - { IDS_WORD_UNKNOWNBRKTS, "<unkown>" }, + { IDS_WORD_UNKNOWNBRKTS, "<unknown>" }, { IDS_WORD_NOT_IMPLEMENTED, "Not implemented" }, { IDS_WORD_NOT_IMPLEMENTED_BRKTS, "<not implemented>" }, { IDS_WORD_UNKNOWNTYPE_BRKTS, "<unknowntype>" }, diff --git a/lldb/tools/lldb-mi/MIUtilFileStd.cpp b/lldb/tools/lldb-mi/MIUtilFileStd.cpp index 1f17b0875c0..853fd745568 100644 --- a/lldb/tools/lldb-mi/MIUtilFileStd.cpp +++ b/lldb/tools/lldb-mi/MIUtilFileStd.cpp @@ -141,7 +141,7 @@ bool CMIUtilFileStd::Write( const CMIUtilString & vData ) return MIstatus::success; } - // Not all of the data has been transfered + // Not all of the data has been transferred m_bFileError = true; SetErrorDescriptionn( MIRSRC( IDE_UTIL_FILE_ERR_WRITING_FILE ), m_fileNamePath.c_str() ); return MIstatus::failure; @@ -178,7 +178,7 @@ bool CMIUtilFileStd::Write( const MIchar * vpData, const MIuint vCharCnt ) return MIstatus::success; } - // Not all of the data has been transfered + // Not all of the data has been transferred m_bFileError = true; SetErrorDescriptionn( MIRSRC( IDE_UTIL_FILE_ERR_WRITING_FILE ), m_fileNamePath.c_str() ); return MIstatus::failure; diff --git a/lldb/www/cpp_reference/html/SBStream_8h_source.html b/lldb/www/cpp_reference/html/SBStream_8h_source.html index cb1d0f0e16f..8a2ad912d7b 100644 --- a/lldb/www/cpp_reference/html/SBStream_8h_source.html +++ b/lldb/www/cpp_reference/html/SBStream_8h_source.html @@ -84,7 +84,7 @@ <div class="line"><a name="l00051"></a><span class="lineno"> 51</span>  <a class="code" href="classlldb_1_1SBStream.html#ad524e1f4253477786ea11a9724d06c28">RedirectToFileDescriptor</a> (<span class="keywordtype">int</span> fd, <span class="keywordtype">bool</span> transfer_fh_ownership);</div> <div class="line"><a name="l00052"></a><span class="lineno"> 52</span> </div> <div class="line"><a name="l00053"></a><span class="lineno"> 53</span>  <span class="comment">// If the stream is redirected to a file, forget about the file and if</span></div> -<div class="line"><a name="l00054"></a><span class="lineno"> 54</span>  <span class="comment">// ownership of the file was transfered to this object, close the file.</span></div> +<div class="line"><a name="l00054"></a><span class="lineno"> 54</span>  <span class="comment">// ownership of the file was transferred to this object, close the file.</span></div> <div class="line"><a name="l00055"></a><span class="lineno"> 55</span>  <span class="comment">// If the stream is backed by a local cache, clear this cache.</span></div> <div class="line"><a name="l00056"></a><span class="lineno"> 56</span>  <span class="keywordtype">void</span></div> <div class="line"><a name="l00057"></a><span class="lineno"> 57</span>  <a class="code" href="classlldb_1_1SBStream.html#a8d58b63ad3b3eafd9aca767149ce44f8">Clear</a> ();</div> diff --git a/lldb/www/python_reference/_lldb'-module.html b/lldb/www/python_reference/_lldb'-module.html index f3a6922c4ba..297d7251cf3 100644 --- a/lldb/www/python_reference/_lldb'-module.html +++ b/lldb/www/python_reference/_lldb'-module.html @@ -25494,7 +25494,7 @@ SBSourceManager_DisplaySourceLinesWithLineNumbers(SBSourceManager self, SBFileSp <p>//-------------------------------------------------------------------------- /// If the stream is redirected to a file, forget about the file and if - /// ownership of the file was transfered to this object, close the file. + /// ownership of the file was transferred to this object, close the file. /// If the stream is backed by a local cache, clear this cache. //--------------------------------------------------------------------------</p> <dl class="fields"> diff --git a/lldb/www/python_reference/lldb-pysrc.html b/lldb/www/python_reference/lldb-pysrc.html index 0b0cbe267fe..b9200eee28a 100644 --- a/lldb/www/python_reference/lldb-pysrc.html +++ b/lldb/www/python_reference/lldb-pysrc.html @@ -29867,7 +29867,7 @@ lldb.SBWatchpoint.IsValid" class="py-name" href="#" onclick="return doclink('lin <a name="L6235"></a><tt class="py-lineno"> 6235</tt> <tt class="py-line"><tt class="py-docstring"> Clear(SBStream self)</tt> </tt> <a name="L6236"></a><tt class="py-lineno"> 6236</tt> <tt class="py-line"><tt class="py-docstring"></tt> </tt> <a name="L6237"></a><tt class="py-lineno"> 6237</tt> <tt class="py-line"><tt class="py-docstring"> If the stream is redirected to a file, forget about the file and if</tt> </tt> -<a name="L6238"></a><tt class="py-lineno"> 6238</tt> <tt class="py-line"><tt class="py-docstring"> ownership of the file was transfered to this object, close the file.</tt> </tt> +<a name="L6238"></a><tt class="py-lineno"> 6238</tt> <tt class="py-line"><tt class="py-docstring"> ownership of the file was transferred to this object, close the file.</tt> </tt> <a name="L6239"></a><tt class="py-lineno"> 6239</tt> <tt class="py-line"><tt class="py-docstring"> If the stream is backed by a local cache, clear this cache.</tt> </tt> <a name="L6240"></a><tt class="py-lineno"> 6240</tt> <tt class="py-line"><tt class="py-docstring"> """</tt> </tt> <a name="L6241"></a><tt class="py-lineno"> 6241</tt> <tt class="py-line"> <tt class="py-keyword">return</tt> <tt class="py-name">_lldb</tt><tt class="py-op">.</tt><tt id="link-4139" class="py-name" targets="Function _lldb'.SBStream_Clear()=_lldb%27-module.html#SBStream_Clear"><a title="_lldb'.SBStream_Clear" class="py-name" href="#" onclick="return doclink('link-4139', 'SBStream_Clear', 'link-4139');">SBStream_Clear</a></tt><tt class="py-op">(</tt><tt class="py-name">self</tt><tt class="py-op">)</tt> </tt> diff --git a/lldb/www/python_reference/lldb.SBStream-class.html b/lldb/www/python_reference/lldb.SBStream-class.html index dee6be7d657..cc135669209 100644 --- a/lldb/www/python_reference/lldb.SBStream-class.html +++ b/lldb/www/python_reference/lldb.SBStream-class.html @@ -651,7 +651,7 @@ <p>Clear(SBStream self)</p> <p>If the stream is redirected to a file, forget about the file and if - ownership of the file was transfered to this object, close the file. If + ownership of the file was transferred to this object, close the file. If the stream is backed by a local cache, clear this cache.</p> <dl class="fields"> </dl> |