diff options
author | Jonathan Nieder <jrnieder@gmail.com> | 2010-08-20 05:40:31 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-08-20 14:16:51 -0700 |
commit | 4fccc0494aa04a061f351217cd59ce02291be026 (patch) | |
tree | 871280287c605a3edd98e470c144020213239a4d /Documentation/git-bisect-lk2009.txt | |
parent | b9190e79134ceea2ed0f4a3d1aa90ce6398858f7 (diff) | |
download | git-4fccc0494aa04a061f351217cd59ce02291be026.tar.gz |
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 <chriscool@tuxfamily.org>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-bisect-lk2009.txt')
-rw-r--r-- | Documentation/git-bisect-lk2009.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/git-bisect-lk2009.txt b/Documentation/git-bisect-lk2009.txt index efbe3790bb..8a2ba37904 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 |