From 23077e3e0a3087d337eb785f8356b39d02930a43 Mon Sep 17 00:00:00 2001 From: Dmitri Gribenko Date: Sun, 2 Mar 2014 16:48:59 +0000 Subject: [PATCH] Documentation comments: fix incorrect usage of \param llvm-svn: 202649 --- clang-tools-extra/clang-query/QueryParser.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/clang-tools-extra/clang-query/QueryParser.h b/clang-tools-extra/clang-query/QueryParser.h index cfba0266c376..53b147e1ba76 100644 --- a/clang-tools-extra/clang-query/QueryParser.h +++ b/clang-tools-extra/clang-query/QueryParser.h @@ -22,16 +22,16 @@ class QuerySession; class QueryParser { public: - /// Parse \param Line as a query. + /// Parse \a Line as a query. /// /// \return A QueryRef representing the query, which may be an InvalidQuery. static QueryRef parse(StringRef Line); - /// Compute a list of completions for \param Line assuming a cursor at - /// \param Pos characters past the start of \param Line, ordered from most + /// Compute a list of completions for \a Line assuming a cursor at + /// \param Pos characters past the start of \a Line, ordered from most /// likely to least likely. /// - /// \return A vector of completions for \param Line. + /// \return A vector of completions for \a Line. static std::vector complete(StringRef Line, size_t Pos);