Documentation comments: fix incorrect usage of \param

llvm-svn: 202649
This commit is contained in:
Dmitri Gribenko 2014-03-02 16:48:59 +00:00
parent e8fa99b276
commit 23077e3e0a
1 changed files with 4 additions and 4 deletions

View File

@ -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);