This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Typos in *.p[lm]
[perl5.git] / lib / bigint.pm
index a53891a..831819b 100644 (file)
@@ -321,7 +321,7 @@ following work:
        print $x + 1, " ", $y,"\n";     # prints 10 9
 
 but calling any method that modifies the number directly will result in
-B<both> the original and the copy beeing destroyed:
+B<both> the original and the copy being destroyed:
        
        $x = 9; $y = $x;
        print $x->badd(1), " ", $y,"\n";        # prints 10 10