summaryrefslogtreecommitdiff
path: root/docs/internals
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-02-20 07:26:16 -0500
committerTim Graham <timograham@gmail.com>2015-02-20 07:26:16 -0500
commitd28bcba209fa3f90f92ce2fd216baf5b5800d143 (patch)
treefee5048dfdf19936544c70e243a7b9b0f2a78e76 /docs/internals
parentc490e410af086fa89f40d515505bba02a08168f3 (diff)
Fixed typo in docs/internals/contributing/triaging-tickets.txt
Diffstat (limited to 'docs/internals')
-rw-r--r--docs/internals/contributing/triaging-tickets.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/internals/contributing/triaging-tickets.txt b/docs/internals/contributing/triaging-tickets.txt
index 8703e6a996..c3a8e1d765 100644
--- a/docs/internals/contributing/triaging-tickets.txt
+++ b/docs/internals/contributing/triaging-tickets.txt
@@ -448,8 +448,8 @@ Next, we mark the current point in history as being "bad" since the test fails::
Now, we need to find a point in git history before the regression was
introduced (i.e. a point where the test passes). Use something like
-``git co HEAD~100`` to checkout an earlier revision (100 commits earlier, in
-this case). Check if the test fails. If so, mark that point as "bad"
+``git checkout HEAD~100`` to checkout an earlier revision (100 commits earlier,
+in this case). Check if the test fails. If so, mark that point as "bad"
(``git bisect bad``), then checkout an earlier revision and recheck. Once you
find a revision where your test passes, mark it as "good"::