[clangd] Correct the elog message, NFC.
authorHaojian Wu <hokein.wu@gmail.com>
Thu, 14 May 2020 12:14:48 +0000 (14:14 +0200)
committerHaojian Wu <hokein.wu@gmail.com>
Thu, 14 May 2020 12:15:21 +0000 (14:15 +0200)
clang-tools-extra/clangd/CodeComplete.cpp

index 4c7f145..0abe023 100644 (file)
@@ -1777,7 +1777,7 @@ SignatureHelp signatureHelp(PathRef FileName,
                             const SymbolIndex *Index) {
   auto Offset = positionToOffset(Contents, Pos);
   if (!Offset) {
-    elog("Code completion position was invalid {0}", Offset.takeError());
+    elog("Signature help position was invalid {0}", Offset.takeError());
     return SignatureHelp();
   }
   SignatureHelp Result;