[llvm] r224197 - Fix Doxygen command misspellings.

Benjamin Kramer benny.kra at googlemail.com
Sat Dec 13 11:19:08 PST 2014


Author: d0k
Date: Sat Dec 13 13:19:07 2014
New Revision: 224197

URL: http://llvm.org/viewvc/llvm-project?rev=224197&view=rev
Log:
Fix Doxygen command misspellings.

Found by -Wdocumentation.

Modified:
    llvm/trunk/include/llvm/Support/FileSystem.h
    llvm/trunk/tools/dsymutil/DebugMap.h

Modified: llvm/trunk/include/llvm/Support/FileSystem.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/FileSystem.h?rev=224197&r1=224196&r2=224197&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/FileSystem.h (original)
+++ llvm/trunk/include/llvm/Support/FileSystem.h Sat Dec 13 13:19:07 2014
@@ -336,8 +336,8 @@ std::error_code copy_file(const Twine &F
 
 /// @brief Resize path to size. File is resized as if by POSIX truncate().
 ///
-/// @param path Input file descriptor.
-/// @param size Size to resize to.
+/// @param FD Input file descriptor.
+/// @param Size Size to resize to.
 /// @returns errc::success if \a path has been resized to \a size, otherwise a
 ///          platform-specific error_code.
 std::error_code resize_file(int FD, uint64_t Size);

Modified: llvm/trunk/tools/dsymutil/DebugMap.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/dsymutil/DebugMap.h?rev=224197&r1=224196&r2=224197&view=diff
==============================================================================
--- llvm/trunk/tools/dsymutil/DebugMap.h (original)
+++ llvm/trunk/tools/dsymutil/DebugMap.h Sat Dec 13 13:19:07 2014
@@ -104,7 +104,7 @@ public:
   bool addSymbol(llvm::StringRef SymName, uint64_t ObjectAddress,
                  uint64_t LinkedAddress);
 
-  /// \bried Lookup a symbol mapping.
+  /// \brief Lookup a symbol mapping.
   /// \returns null if the symbol isn't found.
   const SymbolMapping *lookupSymbol(StringRef SymbolName) const;
 





More information about the llvm-commits mailing list