aboutsummaryrefslogtreecommitdiff
path: root/support/lib/Support/SystemUtils.cpp
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2003-07-14 17:20:40 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2003-07-14 17:20:40 +0000
commitbc0e998c497446f5448425b3cbd7f8f19a458764 (patch)
tree03f1b93bb195c58c06d4db720f57f9c24f2b2512 /support/lib/Support/SystemUtils.cpp
parente3443a62814158945dae6365bfa1ae3d1acf7882 (diff)
The word `separate' only has one `e'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7173 91177308-0d34-0410-b5e6-96231b3b80d8
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...