[llvm] r190034 - Fix typos in assert message.

Nick Lewycky nicholas at mxc.ca
Wed Sep 4 23:54:00 PDT 2013


Author: nicholas
Date: Thu Sep  5 01:53:59 2013
New Revision: 190034

URL: http://llvm.org/viewvc/llvm-project?rev=190034&view=rev
Log:
Fix typos in assert message.

Modified:
    llvm/trunk/include/llvm/Support/FileSystem.h

Modified: llvm/trunk/include/llvm/Support/FileSystem.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/FileSystem.h?rev=190034&r1=190033&r2=190034&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/FileSystem.h (original)
+++ llvm/trunk/include/llvm/Support/FileSystem.h Thu Sep  5 01:53:59 2013
@@ -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;





More information about the llvm-commits mailing list