[clang-tools-extra] r359329 - Fix typo in documentation.
Nick Lewycky via cfe-commits
cfe-commits at lists.llvm.org
Fri Apr 26 10:56:22 PDT 2019
Author: nicholas
Date: Fri Apr 26 10:56:22 2019
New Revision: 359329
URL: http://llvm.org/viewvc/llvm-project?rev=359329&view=rev
Log:
Fix typo in documentation.
Modified:
clang-tools-extra/trunk/docs/clang-tidy/checks/abseil-time-comparison.rst
Modified: clang-tools-extra/trunk/docs/clang-tidy/checks/abseil-time-comparison.rst
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/docs/clang-tidy/checks/abseil-time-comparison.rst?rev=359329&r1=359328&r2=359329&view=diff
==============================================================================
--- clang-tools-extra/trunk/docs/clang-tidy/checks/abseil-time-comparison.rst (original)
+++ clang-tools-extra/trunk/docs/clang-tidy/checks/abseil-time-comparison.rst Fri Apr 26 10:56:22 2019
@@ -6,7 +6,7 @@ abseil-time-comparison
Prefer comparisons in the ``absl::Time`` domain instead of the integer domain.
N.B.: In cases where an ``absl::Time`` is being converted to an integer,
-alignment may occur. If the comparison depends on this alingment, doing the
+alignment may occur. If the comparison depends on this alignment, doing the
comparison in the ``absl::Time`` domain may yield a different result. In
practice this is very rare, and still indicates a bug which should be fixed.
More information about the cfe-commits
mailing list