This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
verses -> versus
authorLukas Mai <l.mai@web.de>
Wed, 6 Jan 2016 13:16:40 +0000 (14:16 +0100)
committerLukas Mai <l.mai@web.de>
Wed, 6 Jan 2016 13:21:01 +0000 (14:21 +0100)
lib/B/Deparse-core.t
lib/Benchmark.pm
t/re/recompile.t

index b97cc71..b42ad0a 100644 (file)
@@ -4,7 +4,7 @@
 #
 # Initially this test file just checked that CORE::foo got correctly
 # deparsed as CORE::foo, hence the name. It's since been expanded
-# to fully test both CORE:: verses none, plus that any arguments
+# to fully test both CORE:: versus none, plus that any arguments
 # are correctly deparsed. It also cross-checks against regen/keywords.pl
 # to make sure we've tested all keywords, and with the correct strength.
 #
index 90e54a6..2537162 100644 (file)
@@ -482,7 +482,7 @@ our(@ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS, $VERSION);
              clearcache clearallcache disablecache enablecache);
 %EXPORT_TAGS=( all => [ @EXPORT, @EXPORT_OK ] ) ;
 
-$VERSION = 1.21;
+$VERSION = 1.22;
 
 # --- ':hireswallclock' special handling
 
@@ -908,7 +908,7 @@ sub timethis{
         # due to clock granularity and variable CPU speed and load,
         # on quick code with a small number of loops, it's possible for
         # the empty loop to appear to take longer than the real loop
-        # (e.g. 1 tick verses 0 ticks). This leads to a negative elapsed
+        # (e.g. 1 tick versus 0 ticks). This leads to a negative elapsed
         # time. In this case, floor it at zero, to stop bizarre results.
         print "            (warning: too few iterations for a reliable count)\n";
         $t->[$_] = 0 for 1..4;
index 20f5a74..222d1af 100644 (file)
@@ -5,7 +5,7 @@
 #
 # Works by checking the debugging output of 'use re debug' and, if
 # available, -Dr. We use both to check that the different code paths
-# with Perl_foo() verses the my_foo() under ext/re/ don't cause any
+# with Perl_foo() versus the my_foo() under ext/re/ don't cause any
 # changes.
 
 $| = 1;