summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2013-09-05 06:53:59 +0000
committerNick Lewycky <nicholas@mxc.ca>2013-09-05 06:53:59 +0000
commitc7c07f6e5595edd205f35acb452fbc4133ce2830 (patch)
treef501f314c9ad55ee722b0691c593ec0c01f9fc5c /include
parent1b41835f02f77c04a93323f722cf158cc566acae (diff)
downloadllvm-c7c07f6e5595edd205f35acb452fbc4133ce2830.tar.gz
llvm-c7c07f6e5595edd205f35acb452fbc4133ce2830.tar.bz2
llvm-c7c07f6e5595edd205f35acb452fbc4133ce2830.tar.xz
Fix typos in assert message.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190034 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/FileSystem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/FileSystem.h b/include/llvm/Support/FileSystem.h
index fb0eaeb8db..9d72a66512 100644
--- a/include/llvm/Support/FileSystem.h
+++ b/include/llvm/Support/FileSystem.h
@@ -970,7 +970,7 @@ public:
// modifiers
/// Goes up one level if Level > 0.
void pop() {
- assert(State && "Cannot pop and end itertor!");
+ assert(State && "Cannot pop an end iterator!");
assert(State->Level > 0 && "Cannot pop an iterator with level < 1");
const directory_iterator end_itr;