Skip Menu |

This queue is for tickets about the Math-Complex CPAN distribution.

Report information
The Basics
Id: 131037
Status: open
Priority: 0/
Queue: Math-Complex

People
Owner: Nobody in particular
Requestors: jidanni [...] jidanni.org
Cc:
AdminCc:

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



Subject: Syntax error on man page
man Math::Complex says $j = ((root(1, 3))[1]; That is a syntax error.
On Thu Nov 21 01:49:45 2019, jidanni@jidanni.org wrote: Show quoted text
> man Math::Complex says > $j = ((root(1, 3))[1]; > That is a syntax error.
Trivial patch: diff --git a/cpan/Math-Complex/lib/Math/Complex.pm b/cpan/Math-Complex/lib/Math/Complex.pm index ea3e006fe5..b7badbbd16 100644 --- a/cpan/Math-Complex/lib/Math/Complex.pm +++ b/cpan/Math-Complex/lib/Math/Complex.pm @@ -1847,7 +1847,7 @@ number mathematicians call C<j> such that: is a simple matter of writing: - $j = ((root(1, 3))[1]; + $j = (root(1, 3))[1]; The I<k>th root for C<z = [r,t]> is given by: