summaryrefslogtreecommitdiff
path: root/Porting
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2011-10-03 18:05:04 +0200
committerNicholas Clark <nick@ccl4.org>2011-10-03 18:05:04 +0200
commit71d806387212f665876b3e089f8a0e8bd0dc2b50 (patch)
tree6c38d8aeeeee894c0f959e37654f69358ff07cf6 /Porting
parent77ae60922f15f9247c2f39404184336591b47c6a (diff)
downloadperl-71d806387212f665876b3e089f8a0e8bd0dc2b50.tar.gz
Fix two typos in the documentation for bisect-runner.pl
Diffstat (limited to 'Porting')
-rwxr-xr-xPorting/bisect-runner.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/Porting/bisect-runner.pl b/Porting/bisect-runner.pl
index c65795b2fc..57e1d91689 100755
--- a/Porting/bisect-runner.pl
+++ b/Porting/bisect-runner.pl
@@ -60,7 +60,7 @@ bisect.pl - use git bisect to pinpoint changes
# When did this become an error?
.../Porting/bisect.pl -e 'my $a := 2;'
- # When did this become stop being an error?
+ # When did this stop being an error?
.../Porting/bisect.pl --expect-fail -e '1 // 2'
# When did this stop matching?
.../Porting/bisect.pl --match '\b(?:PL_)hash_seed_set\b'
@@ -124,7 +124,7 @@ the perl built, you'll probably need to invoke it as C<./perl -Ilib ...>
--start I<commit-ish>
Earliest revision to test, as a I<commit-ish> (a tag, commit or anything
-else C<git> understands as a revision. If not specified, C<bisect.pl> will
+else C<git> understands as a revision). If not specified, C<bisect.pl> will
search stable perl releases from 5.002 to 5.14.0 until it finds one where
the test case passes.