[clang-tools-extra] r202649 - Documentation comments: fix incorrect usage of \param
Dmitri Gribenko
gribozavr at gmail.com
Sun Mar 2 08:48:59 PST 2014
Author: gribozavr
Date: Sun Mar 2 10:48:59 2014
New Revision: 202649
URL: http://llvm.org/viewvc/llvm-project?rev=202649&view=rev
Log:
Documentation comments: fix incorrect usage of \param
Modified:
clang-tools-extra/trunk/clang-query/QueryParser.h
Modified: clang-tools-extra/trunk/clang-query/QueryParser.h
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clang-query/QueryParser.h?rev=202649&r1=202648&r2=202649&view=diff
==============================================================================
--- clang-tools-extra/trunk/clang-query/QueryParser.h (original)
+++ clang-tools-extra/trunk/clang-query/QueryParser.h Sun Mar 2 10:48:59 2014
@@ -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);
More information about the cfe-commits
mailing list