Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Test-Differences CPAN distribution.

Report information
The Basics
Id: 95443
Status: resolved
Priority: 0/
Queue: Test-Differences

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

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



Subject: Documentation nit: eq_or_diff @a, @b
The Test::Differences documentation is using the following examples which could be a little bit misleading: a user might think that he could pass arrays instead of array references: eq_or_diff @a, @b; ## First element is element 0 eq_or_diff $a, @b; ## First line/element is element 0 Probably it's better to write here: eq_or_diff \@a, \@b; ## First element is element 0 eq_or_diff $a, \@b; ## First line/element is element 0 Regards, Slaven
Thanks, fixed. See https://github.com/Ovid/Test-Differences/commit/f4899d95b15cd6e2996d447b3fe1b11ebefef60a It's not worth a release on its own but it'll be in the next substantive release.