summaryrefslogtreecommitdiffstats
path: root/clang-query
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2014-03-02 16:48:59 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2014-03-02 16:48:59 +0000
commit76e47bcd14ab1947c69cf59f9418858e3e22150e (patch)
tree7eb18276729d1b8646d0349dace9ca98a2232f74 /clang-query
parentd0ae00d9ce029c7bc48433a09bb0579bb8e167fc (diff)
Documentation comments: fix incorrect usage of \param
git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@202649 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'clang-query')
-rw-r--r--clang-query/QueryParser.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/clang-query/QueryParser.h b/clang-query/QueryParser.h
index cfba0266..53b147e1 100644
--- a/clang-query/QueryParser.h
+++ b/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<llvm::LineEditor::Completion> complete(StringRef Line,
size_t Pos);