[Lldb-commits] [lldb] r372569 - [lldb][NFC] Fix documentation of CompletionRequest::AddCompletion
Raphael Isemann via lldb-commits
lldb-commits at lists.llvm.org
Mon Sep 23 02:53:33 PDT 2019
Author: teemperor
Date: Mon Sep 23 02:53:33 2019
New Revision: 372569
URL: http://llvm.org/viewvc/llvm-project?rev=372569&view=rev
Log:
[lldb][NFC] Fix documentation of CompletionRequest::AddCompletion
Modified:
lldb/trunk/include/lldb/Utility/CompletionRequest.h
Modified: lldb/trunk/include/lldb/Utility/CompletionRequest.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Utility/CompletionRequest.h?rev=372569&r1=372568&r2=372569&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Utility/CompletionRequest.h (original)
+++ lldb/trunk/include/lldb/Utility/CompletionRequest.h Mon Sep 23 02:53:33 2019
@@ -138,8 +138,9 @@ public:
/// afterwards.
///
/// \param match The suggested completion.
- /// \param match An optional description of the completion string. The
+ /// \param completion An optional description of the completion string. The
/// description will be displayed to the user alongside the completion.
+ /// \param mode The CompletionMode for this completion.
void AddCompletion(llvm::StringRef completion,
llvm::StringRef description = "",
CompletionMode mode = CompletionMode::Normal) {
More information about the lldb-commits
mailing list