[clang-tools-extra] r355095 - [clang-tidy] another issue in documentation, double empty line seemed to confuse code-block

Jonas Toth via cfe-commits cfe-commits at lists.llvm.org
Thu Feb 28 07:18:54 PST 2019


Author: jonastoth
Date: Thu Feb 28 07:18:54 2019
New Revision: 355095

URL: http://llvm.org/viewvc/llvm-project?rev=355095&view=rev
Log:
[clang-tidy] another issue in documentation, double empty line seemed to confuse code-block

Modified:
    clang-tools-extra/trunk/docs/clang-tidy/checks/abseil-duration-subtraction.rst

Modified: clang-tools-extra/trunk/docs/clang-tidy/checks/abseil-duration-subtraction.rst
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/docs/clang-tidy/checks/abseil-duration-subtraction.rst?rev=355095&r1=355094&r2=355095&view=diff
==============================================================================
--- clang-tools-extra/trunk/docs/clang-tidy/checks/abseil-duration-subtraction.rst (original)
+++ clang-tools-extra/trunk/docs/clang-tidy/checks/abseil-duration-subtraction.rst Thu Feb 28 07:18:54 2019
@@ -21,7 +21,6 @@ Examples:
   // Suggestion - Subtraction in the absl::Duration domain instead
   double result = absl::ToDoubleSeconds(d - absl::Seconds(x));
 
-
   // Original - Subtraction of two Durations in the double domain
   absl::Duration d1, d2;
   double result = absl::ToDoubleSeconds(d1) - absl::ToDoubleSeconds(d2);




More information about the cfe-commits mailing list