diff options
author | Ilya Biryukov <ibiryukov@google.com> | 2018-03-14 17:49:19 +0000 |
---|---|---|
committer | Ilya Biryukov <ibiryukov@google.com> | 2018-03-14 17:49:19 +0000 |
commit | fe3aae2a7655d33cd005a3e067db6912dcdc658b (patch) | |
tree | fb378b29247e5fc59621236253cea0e64f56a7d6 | |
parent | 56fb2b2f20622aacc4a9229d57a37a35940b57a4 (diff) | |
download | bcm5719-llvm-fe3aae2a7655d33cd005a3e067db6912dcdc658b.tar.gz bcm5719-llvm-fe3aae2a7655d33cd005a3e067db6912dcdc658b.zip |
[clangd] Fix indentation in the comment. NFC
llvm-svn: 327539
-rw-r--r-- | clang-tools-extra/clangd/TUScheduler.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/clang-tools-extra/clangd/TUScheduler.h b/clang-tools-extra/clangd/TUScheduler.h index b48d289489a..aea669d9c73 100644 --- a/clang-tools-extra/clangd/TUScheduler.h +++ b/clang-tools-extra/clangd/TUScheduler.h @@ -85,8 +85,9 @@ public: /// This gives callers two options: /// - validate that the preamble is still valid, and only use it in this case /// - accept that preamble contents may be outdated, and try to avoid reading - /// source code from headers. If an error occurs during processing, it is - /// forwarded to the \p Action callback. + /// source code from headers. + /// If an error occurs during processing, it is forwarded to the \p Action + /// callback. void runWithPreamble(llvm::StringRef Name, PathRef File, Callback<InputsAndPreamble> Action); |