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