From: Bruno Ricci Date: Tue, 28 Jul 2020 14:35:31 +0000 (+0100) Subject: [Support][NFC] Fix a Wdocumentation warning in FileSystem.h X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=01302ec08609ef3b113e13aba2a08443e4fa3046;p=platform%2Fupstream%2Fllvm.git [Support][NFC] Fix a Wdocumentation warning in FileSystem.h --- diff --git a/llvm/include/llvm/Support/FileSystem.h b/llvm/include/llvm/Support/FileSystem.h index b6d2a9f..18d787a 100644 --- a/llvm/include/llvm/Support/FileSystem.h +++ b/llvm/include/llvm/Support/FileSystem.h @@ -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);