Thinko in given() description, found by chromatic
Rafael Garcia-Suarez [Fri, 24 Jul 2009 07:26:52 +0000 (09:26 +0200)]
pod/perlsyn.pod

index 9212573..9aa8fbb 100644 (file)
@@ -633,7 +633,7 @@ you want. For example you could write:
     when (/^\d+$/ && $_ < 75) { ... }
 
 Another useful shortcut is that, if you use a literal array
-or hash as the argument to C<when>, it is turned into a
+or hash as the argument to C<given>, it is turned into a
 reference. So C<given(@foo)> is the same as C<given(\@foo)>,
 for example.