diff options
| author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-07-03 14:09:56 +0000 |
|---|---|---|
| committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-07-03 14:09:56 +0000 |
| commit | d0ee89d81a68eb1d9a1f9698db6bc4427a3b3061 (patch) | |
| tree | 431e5e90ea10a5b11883d013c3977a2a5a3cf8ed | |
| parent | b776eaed2e604d1b16041178ded4e74ab83a3555 (diff) | |
| download | bcm5719-llvm-d0ee89d81a68eb1d9a1f9698db6bc4427a3b3061.tar.gz bcm5719-llvm-d0ee89d81a68eb1d9a1f9698db6bc4427a3b3061.zip | |
[lldb-mi] Typo fixes
Summary: Some more typo fixes in LLDB-MI.
Reviewers: ki.stfu, abidh
Subscribers: lldb-commits
Differential Revision: http://reviews.llvm.org/D10925
llvm-svn: 241351
| -rw-r--r-- | lldb/tools/lldb-mi/MICmdArgValString.cpp | 6 | ||||
| -rw-r--r-- | lldb/tools/lldb-mi/MICmdArgValString.h | 2 | ||||
| -rw-r--r-- | lldb/tools/lldb-mi/MIUtilFileStd.cpp | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/lldb/tools/lldb-mi/MICmdArgValString.cpp b/lldb/tools/lldb-mi/MICmdArgValString.cpp index 7278e8553d4..34bc481057f 100644 --- a/lldb/tools/lldb-mi/MICmdArgValString.cpp +++ b/lldb/tools/lldb-mi/MICmdArgValString.cpp @@ -44,7 +44,7 @@ CMICmdArgValString::CMICmdArgValString(const bool vbAnything) //++ ------------------------------------------------------------------------------------ // Details: CMICmdArgValString constructor. // Type: Method. -// Args: vbHandleQuotes - (R) True = Parse a string surrounded by quotes spaces are not delimitors, false = only text up to +// Args: vbHandleQuotes - (R) True = Parse a string surrounded by quotes spaces are not delimiters, false = only text up to // next delimiting space character. // vbAcceptNumbers - (R) True = Parse a string and accept as a number if number, false = numbers not recognised // as string types. @@ -67,7 +67,7 @@ CMICmdArgValString::CMICmdArgValString(const bool vbHandleQuotes, const bool vbA // Args: vrArgName - (R) Argument's name to search by. // vbMandatory - (R) True = Yes must be present, false = optional argument. // vbHandleByCmd - (R) True = Command processes *this option, false = not handled. -// vbHandleQuotes - (R) True = Parse a string surrounded by quotes spaces are not delimitors, false = only text up to +// vbHandleQuotes - (R) True = Parse a string surrounded by quotes spaces are not delimiters, false = only text up to // next delimiting space character. (Dflt = false) // vbAcceptNumbers - (R) True = Parse a string and accept as a number if number, false = numbers not recognised as // string types. (Dflt = false) @@ -323,7 +323,7 @@ CMICmdArgValString::IsStringArgQuotedTextEmbedded(const CMIUtilString &vrTxt) co if (nPos2 == (MIint)std::string::npos) return false; - // Make sure not same back slash, need two slashs + // Make sure not same back slash, need two slashes if (nPos == nPos2) return MIstatus::failure; diff --git a/lldb/tools/lldb-mi/MICmdArgValString.h b/lldb/tools/lldb-mi/MICmdArgValString.h index d5fb26c5815..54051d61591 100644 --- a/lldb/tools/lldb-mi/MICmdArgValString.h +++ b/lldb/tools/lldb-mi/MICmdArgValString.h @@ -58,7 +58,7 @@ class CMICmdArgValString : public CMICmdArgValBaseTemplate<CMIUtilString> // Attribute: private: - bool m_bHandleQuotedString; // True = Parse a string surrounded by quotes spaces are not delimitors, false = only text up to next + bool m_bHandleQuotedString; // True = Parse a string surrounded by quotes spaces are not delimiters, false = only text up to next // delimiting space character bool m_bAcceptNumbers; // True = Parse a string and accept as a number if number, false = numbers not recognised as string types bool m_bHandleDirPaths; // True = Parse a string and accept directory file style string if present, false = directory file path not diff --git a/lldb/tools/lldb-mi/MIUtilFileStd.cpp b/lldb/tools/lldb-mi/MIUtilFileStd.cpp index 0b43757b23e..5f3bd37622d 100644 --- a/lldb/tools/lldb-mi/MIUtilFileStd.cpp +++ b/lldb/tools/lldb-mi/MIUtilFileStd.cpp @@ -269,7 +269,7 @@ CMIUtilFileStd::StripOffFileName(const CMIUtilString &vDirectoryPath) } //++ ------------------------------------------------------------------------------------ -// Details: Return either backslash or forward slash appropriate to the OS this applilcation +// Details: Return either backslash or forward slash appropriate to the OS this application // is running on. // Type: Static method. // Args: None. |

