Subject: | [PATCH] Fix typo |
Date: | Sun, 4 Oct 2020 11:52:27 +0000 |
To: | bug-bignum [...] rt.cpan.org |
From: | Samanta Navarro <ferivoz [...] riseup.net> |
diff --git a/cpan/bignum/lib/bigrat.pm b/cpan/bignum/lib/bigrat.pm
index 0a98147..79a0423 100644
--- a/cpan/bignum/lib/bigrat.pm
+++ b/cpan/bignum/lib/bigrat.pm
@@ -405,7 +405,7 @@ B<both> the original and the copy being destroyed:
$x = 9; $y = $x;
print $x->bmul(2), " ", $y,"\n"; # prints 18 18
-Using methods that do not modify, but testthe contents works:
+Using methods that do not modify, but test the contents works:
$x = 9; $y = $x;
$z = 9 if $x->is_zero(); # works fine