[Support][NFC] Fix a Wdocumentation warning in FileSystem.h

This commit is contained in:
Bruno Ricci 2020-07-28 15:35:31 +01:00
parent c64c04bbaa
commit 01302ec086
No known key found for this signature in database
GPG Key ID: D58C906B2F684D92
1 changed files with 2 additions and 2 deletions

View File

@ -1140,7 +1140,7 @@ openNativeFileForRead(const Twine &Name, OpenFlags Flags = OF_None,
/// none of other processes read or write this file, provided that all processes
/// lock the file prior to accessing its content.
///
/// @param File The descriptor representing the file to lock.
/// @param FD The descriptor representing the file to lock.
/// @param Timeout Time in milliseconds that the process should wait before
/// reporting lock failure. Zero value means try to get lock only
/// once.
@ -1163,7 +1163,7 @@ std::error_code lockFile(int FD);
/// Unlock the file.
///
/// @param File The descriptor representing the file to unlock.
/// @param FD The descriptor representing the file to unlock.
/// @returns errc::success if lock is successfully released or platform-specific
/// error_code otherwise.
std::error_code unlockFile(int FD);