summaryrefslogtreecommitdiffstats
path: root/Source/cmSystemTools.h
diff options
context:
space:
mode:
authorLuz Paz <luzpaz@users.noreply.github.com>2018-01-03 12:09:54 (GMT)
committerCraig Scott <craig.scott@crascit.com>2018-01-03 19:52:01 (GMT)
commit3ab7bf82852a43871edd6b2d026f35caeeb71307 (patch)
tree74091fa34c79611957c11592aa59efa5f4465c58 /Source/cmSystemTools.h
parent3e1f5b11e0cfaeb28d1bc4de36e5856344ccb87c (diff)
downloadCMake-3ab7bf82852a43871edd6b2d026f35caeeb71307.zip
CMake-3ab7bf82852a43871edd6b2d026f35caeeb71307.tar.gz
CMake-3ab7bf82852a43871edd6b2d026f35caeeb71307.tar.bz2
Various typo fixes
Some are user-facing. Others are source comments.
Diffstat (limited to 'Source/cmSystemTools.h')
-rw-r--r--Source/cmSystemTools.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h
index 2646df9..cf7de5a 100644
--- a/Source/cmSystemTools.h
+++ b/Source/cmSystemTools.h
@@ -59,7 +59,7 @@ public:
* Set the function used by GUIs to display error messages
* Function gets passed: message as a const char*,
* title as a const char*, and a reference to bool that when
- * set to false, will disable furthur messages (cancel).
+ * set to false, will disable further messages (cancel).
*/
static void SetMessageCallback(MessageCallback f,
void* clientData = nullptr);
@@ -167,7 +167,7 @@ public:
* to be at the end of the string and it does not support ?
* []... The optional argument type specifies what kind of files you
* want to find. 0 means all files, -1 means directories, 1 means
- * files only. This method returns true if search was succesfull.
+ * files only. This method returns true if search was successful.
*/
static bool SimpleGlob(const std::string& glob,
std::vector<std::string>& files, int type = 0);
@@ -229,7 +229,7 @@ public:
/**
* In this version of RunSingleCommand, command[0] should be
* the command to run, and each argument to the command should
- * be in comand[1]...command[command.size()]
+ * be in command[1]...command[command.size()]
*/
static bool RunSingleCommand(std::vector<std::string> const& command,
std::string* captureStdOut = nullptr,