From 23c2f67fdac3138b5f552fcb7151bb4e0a149c1b Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Tue, 8 Jun 2004 13:49:17 +0000 Subject: [PATCH] Fix case of doxygen directive `\p': it's lowercase. llvm-svn: 14068 --- llvm/include/llvm/Bytecode/Analyzer.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/llvm/include/llvm/Bytecode/Analyzer.h b/llvm/include/llvm/Bytecode/Analyzer.h index e6df72fd7906..3bc944f62f66 100644 --- a/llvm/include/llvm/Bytecode/Analyzer.h +++ b/llvm/include/llvm/Bytecode/Analyzer.h @@ -71,7 +71,7 @@ struct BytecodeAnalysis { }; /// This function is the main entry point into the bytecode analysis library. It -/// allows you to simply provide a \P filename and storage for the \P Results +/// allows you to simply provide a \p filename and storage for the \p Results /// that will be filled in with the analysis results. /// @brief Analyze contents of a bytecode File void AnalyzeBytecodeFile( @@ -82,8 +82,8 @@ void AnalyzeBytecodeFile( /// This function is an alternate entry point into the bytecode analysis /// library. It allows you to provide an arbitrary memory buffer which is -/// assumed to contain a complete bytecode file. The \P Buffer is analyzed and -/// the \P Results are filled in. +/// assumed to contain a complete bytecode file. The \p Buffer is analyzed and +/// the \p Results are filled in. /// @brief Analyze contents of a bytecode buffer. void AnalyzeBytecodeBuffer( const unsigned char* Buffer, ///< Pointer to start of bytecode buffer