From: Rafael Garcia-Suarez Date: Fri, 24 Jul 2009 07:26:52 +0000 (+0200) Subject: Thinko in given() description, found by chromatic X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=107bd1173cd0e834849d7ce5b0c1212929791181;p=p5sagit%2Fp5-mst-13.2.git Thinko in given() description, found by chromatic --- diff --git a/pod/perlsyn.pod b/pod/perlsyn.pod index 9212573..9aa8fbb 100644 --- a/pod/perlsyn.pod +++ b/pod/perlsyn.pod @@ -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, it is turned into a +or hash as the argument to C, it is turned into a reference. So C is the same as C, for example.