summaryrefslogtreecommitdiff
path: root/support/lib/Support/SystemUtils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'support/lib/Support/SystemUtils.cpp')
-rw-r--r--support/lib/Support/SystemUtils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/lib/Support/SystemUtils.cpp b/support/lib/Support/SystemUtils.cpp
index 97e13067d0..aca9e5a402 100644
--- a/support/lib/Support/SystemUtils.cpp
+++ b/support/lib/Support/SystemUtils.cpp
@@ -96,7 +96,7 @@ std::string FindExecutable(const std::string &ExeName,
const char *PathStr = getenv("PATH");
if (PathStr == 0) return "";
- // Now we have a colon seperated list of directories to search... try them...
+ // Now we have a colon separated list of directories to search... try them...
unsigned PathLen = strlen(PathStr);
while (PathLen) {
// Find the first colon...