[llvm] r186532 - Fix a funny typo. Thanks to Aaron Ballman for noticing.

Rafael Espindola rafael.espindola at gmail.com
Wed Jul 17 12:58:28 PDT 2013


Author: rafael
Date: Wed Jul 17 14:58:28 2013
New Revision: 186532

URL: http://llvm.org/viewvc/llvm-project?rev=186532&view=rev
Log:
Fix a funny typo. Thanks to Aaron Ballman for noticing.

Modified:
    llvm/trunk/lib/Support/Windows/Path.inc

Modified: llvm/trunk/lib/Support/Windows/Path.inc
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/Windows/Path.inc?rev=186532&r1=186531&r2=186532&view=diff
==============================================================================
--- llvm/trunk/lib/Support/Windows/Path.inc (original)
+++ llvm/trunk/lib/Support/Windows/Path.inc Wed Jul 17 14:58:28 2013
@@ -1054,7 +1054,7 @@ error_code openFileForRead(const Twine &
                            OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
   if (H == INVALID_HANDLE_VALUE) {
     error_code EC = windows_error(::GetLastError());
-    // Provide a better error massage when trying to open directories.
+    // Provide a better error message when trying to open directories.
     // This only runs if we failed to open the file, so there is probably
     // no performances issues.
     if (EC != windows_error::access_denied)





More information about the llvm-commits mailing list