Skip Menu |

This queue is for tickets about the bignum CPAN distribution.

Report information
The Basics
Id: 133469
Status: new
Priority: 0/
Queue: bignum

People
Owner: Nobody in particular
Requestors: ferivoz [...] riseup.net
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



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