Fix typo in documentation.
authorNick Lewycky <nicholas@mxc.ca>
Fri, 26 Apr 2019 17:56:22 +0000 (17:56 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Fri, 26 Apr 2019 17:56:22 +0000 (17:56 +0000)
llvm-svn: 359329

clang-tools-extra/docs/clang-tidy/checks/abseil-time-comparison.rst

index 130459b..9342e4c 100644 (file)
@@ -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.