Adjust comments to new semantics.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@89862 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Edward O'Callaghan 2009-11-25 12:00:34 +00:00
parent 5f9b9efa17
commit 5b512fe527

View File

@ -380,9 +380,9 @@ namespace sys {
/// in the file system.
bool canWrite() const;
/// This function checks that what we're trying to work only on a regular file
/// or directory. Check for things like /dev/null, any block special file,
/// or other things that aren't "regular" regular files or directories.
/// This function checks that what we're trying to work only on a regular file.
/// Check for things like /dev/null, any block special file,
/// or other things that aren't "regular" regular files.
/// @returns true if the file is S_ISREG.
/// @brief Determines if the file is a regular file
bool isRegularFile() const;