From fdca80ddc969dd5db9175782ca6674397d260d99 Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Sat, 30 Jun 2018 12:24:23 +0000 Subject: [PATCH] Fix Wdocumentation compiler warning. NFCI. llvm-svn: 336049 --- llvm/include/llvm/Support/FileSystem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/Support/FileSystem.h b/llvm/include/llvm/Support/FileSystem.h index 1a6695c0161a..4b42196a6b03 100644 --- a/llvm/include/llvm/Support/FileSystem.h +++ b/llvm/include/llvm/Support/FileSystem.h @@ -397,7 +397,7 @@ std::error_code copy_file(const Twine &From, const Twine &To); /// Copy the contents of \a From to \a To. /// /// @param From The path to copy from. -/// @param To The open file descriptor of the destinatino file. +/// @param ToFD The open file descriptor of the destination file. std::error_code copy_file(const Twine &From, int ToFD); /// Resize path to size. File is resized as if by POSIX truncate().