Fix typos in assert message.
authorNick Lewycky <nicholas@mxc.ca>
Thu, 5 Sep 2013 06:53:59 +0000 (06:53 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Thu, 5 Sep 2013 06:53:59 +0000 (06:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190034 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/FileSystem.h

index fb0eaeb8dbcf0181b5c04c536bb2ab440b4df7fc..9d72a665125759f19a5096125b576445aa1e87a0 100644 (file)
@@ -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;