[clang-tools-extra] r327539 - [clangd] Fix indentation in the comment. NFC

Ilya Biryukov via cfe-commits cfe-commits at lists.llvm.org
Wed Mar 14 10:49:19 PDT 2018


Author: ibiryukov
Date: Wed Mar 14 10:49:19 2018
New Revision: 327539

URL: http://llvm.org/viewvc/llvm-project?rev=327539&view=rev
Log:
[clangd] Fix indentation in the comment. NFC

Modified:
    clang-tools-extra/trunk/clangd/TUScheduler.h

Modified: clang-tools-extra/trunk/clangd/TUScheduler.h
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clangd/TUScheduler.h?rev=327539&r1=327538&r2=327539&view=diff
==============================================================================
--- clang-tools-extra/trunk/clangd/TUScheduler.h (original)
+++ clang-tools-extra/trunk/clangd/TUScheduler.h Wed Mar 14 10:49:19 2018
@@ -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);
 




More information about the cfe-commits mailing list