Skip to content

Commit 4fccc04

Browse files
jrngitster
authored andcommitted
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>
1 parent b9190e7 commit 4fccc04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Documentation/git-bisect-lk2009.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -873,7 +873,7 @@ c * N * T + b * M * log2(M) tests
873873
where c is the number of rounds of test (so a small constant) and b is
874874
the ratio of bug per commit (hopefully a small constant too).
875875

876-
So of course it's much better as it's O(N \* T) vs O(N \* T \* M) if
876+
So of course it's much better as it's O(N * T) vs O(N * T * M) if
877877
you would test everything after each commit.
878878

879879
This means that test suites are good to prevent some bugs from being

0 commit comments

Comments
 (0)