From: Jonathan Nieder Date: Fri, 20 Aug 2010 10:40:31 +0000 (-0500) Subject: Documentation: remove stray backslashes from "Fighting regressions" article X-Git-Tag: v1.7.3-rc0~15^2~1 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=4fccc0494aa04a061f351217cd59ce02291be026;p=git.git Documentation: remove stray backslashes from "Fighting regressions" article The intended text is "it's O(N * T) vs O(N * T * M)". Asciidoc notices the spaces around the asterisks so there is no need to escape them (and if you try, it passes the backslashes through). Cc: Christian Couder Signed-off-by: Jonathan Nieder Signed-off-by: Junio C Hamano --- diff --git a/Documentation/git-bisect-lk2009.txt b/Documentation/git-bisect-lk2009.txt index efbe3790b..8a2ba3790 100644 --- a/Documentation/git-bisect-lk2009.txt +++ b/Documentation/git-bisect-lk2009.txt @@ -873,7 +873,7 @@ c * N * T + b * M * log2(M) tests where c is the number of rounds of test (so a small constant) and b is the ratio of bug per commit (hopefully a small constant too). -So of course it's much better as it's O(N \* T) vs O(N \* T \* M) if +So of course it's much better as it's O(N * T) vs O(N * T * M) if you would test everything after each commit. This means that test suites are good to prevent some bugs from being