diff --git a/CREDITS b/CREDITS index cd211f85..8743d999 100644 --- a/CREDITS +++ b/CREDITS @@ -251,3 +251,6 @@ E: tchrist@perl.com N: Daniel Holz E: dgholz@gmail.com + +N: Kevin Granade +E: kevin.granade@gmail.com diff --git a/sections/operator_types.pod b/sections/operator_types.pod index 5020a60d..7f38e3f6 100644 --- a/sections/operator_types.pod +++ b/sections/operator_types.pod @@ -254,7 +254,7 @@ appropriately. For example: my $cal_length = length $calendar; is( @scheherazade, 1001, 'list repeated' ); - is( $length, 1001 * length 'nights', + is( $cal_length, 1001 * length 'nights', 'word repeated' ); my @schenolist = 'nights' x 1001;