diff options
-rw-r--r-- | clang-tools-extra/clangd/Headers.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/clangd/Headers.h b/clang-tools-extra/clangd/Headers.h index dc870cbf3fe..c0c7ab1b417 100644 --- a/clang-tools-extra/clangd/Headers.h +++ b/clang-tools-extra/clangd/Headers.h @@ -125,7 +125,7 @@ public: private: // Identifying files in a way that persists from preamble build to subsequent // builds is surprisingly hard. FileID is unavailable in InclusionDirective(), - // and RealPathName and UniqueID are not preseved in the preamble. + // and RealPathName and UniqueID are not preserved in the preamble. // We use the FileEntry::Name, which is stable, interned into a "file index". // The paths we want to expose are the RealPathName, so store those too. std::vector<std::string> RealPathNames; // In file index order. |