From 3b59cfdddc78ba6c50c36d5df666312658367ac4 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Fri, 12 Sep 2014 15:12:21 +0000 Subject: [PATCH] sys::fs::access(): Fix @param [-Wdocumentation] git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217684 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/FileSystem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Support/FileSystem.h b/include/llvm/Support/FileSystem.h index 87fc4875bd5..5fd6213a9da 100644 --- a/include/llvm/Support/FileSystem.h +++ b/include/llvm/Support/FileSystem.h @@ -354,7 +354,7 @@ bool exists(file_status status); /// @brief Can the file be accessed? /// -/// @param path Input path. +/// @param Path Input path. /// @returns errc::success if the path can be accessed, otherwise a /// platform-specific error_code. enum class AccessMode { Exist, Write, Execute };