diff options
author | Jan Korous <jkorous@apple.com> | 2019-07-30 20:39:39 +0000 |
---|---|---|
committer | Jan Korous <jkorous@apple.com> | 2019-07-30 20:39:39 +0000 |
commit | 2ee6497e8f3235bba55f8e46c59098f1bb86b062 (patch) | |
tree | d210f4f199b46f3a076a4073f146ca2aa00ecf57 | |
parent | 71d4544961a6243bcb8c21ac6e127f7f041a7f57 (diff) | |
download | bcm5719-llvm-2ee6497e8f3235bba55f8e46c59098f1bb86b062.tar.gz bcm5719-llvm-2ee6497e8f3235bba55f8e46c59098f1bb86b062.zip |
[clangd][NFC] Typo in comment
llvm-svn: 367354
-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. |