[llvm] r340063 - [Support] NFC: Fix docstring in FileSystem.h.

Reka Kovacs via llvm-commits llvm-commits at lists.llvm.org
Fri Aug 17 11:05:39 PDT 2018


Author: rkovacs
Date: Fri Aug 17 11:05:38 2018
New Revision: 340063

URL: http://llvm.org/viewvc/llvm-project?rev=340063&view=rev
Log:
[Support] NFC: Fix docstring in FileSystem.h.

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=340063&r1=340062&r2=340063&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/FileSystem.h (original)
+++ llvm/trunk/include/llvm/Support/FileSystem.h Fri Aug 17 11:05:38 2018
@@ -701,7 +701,7 @@ enum CreationDisposition : unsigned {
   ///   * If it does not already exist, create a new file.
   CD_CreateNew = 1,
 
-  /// CD_OpenAlways - When opening a file:
+  /// CD_OpenExisting - When opening a file:
   ///   * If it already exists, open the file with the offset set to 0.
   ///   * If it does not already exist, fail.
   CD_OpenExisting = 2,




More information about the llvm-commits mailing list