From 27385aef6e44eea62cb5f70f42b4082fde55346e Mon Sep 17 00:00:00 2001 From: Evgenii Balai Date: Fri, 8 Nov 2019 00:46:44 -0500 Subject: [PATCH] Correct comment about completion cache --- src/sema_manager.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sema_manager.hh b/src/sema_manager.hh index 23ce4c6a..571d5ed1 100644 --- a/src/sema_manager.hh +++ b/src/sema_manager.hh @@ -159,8 +159,8 @@ struct SemaManager { }; // Cached completion information, so we can give fast completion results when -// the user erases a character. vscode will resend the completion request if -// that happens. +// the user adds or erases a character. vscode will resend the completion request +// if that happens. template struct CompleteConsumerCache { std::mutex mutex; std::string path;