From: Nick Lewycky Date: Fri, 26 Apr 2019 17:56:22 +0000 (+0000) Subject: Fix typo in documentation. X-Git-Tag: llvmorg-10-init~6901 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1d30f0c93e7c30748d28bf3b916218bdd4124f20;p=platform%2Fupstream%2Fllvm.git Fix typo in documentation. llvm-svn: 359329 --- diff --git a/clang-tools-extra/docs/clang-tidy/checks/abseil-time-comparison.rst b/clang-tools-extra/docs/clang-tidy/checks/abseil-time-comparison.rst index 130459b..9342e4c 100644 --- a/clang-tools-extra/docs/clang-tidy/checks/abseil-time-comparison.rst +++ b/clang-tools-extra/docs/clang-tidy/checks/abseil-time-comparison.rst @@ -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.