From: Abigail Date: Fri, 5 Sep 1997 00:00:00 +0000 (+0000) Subject: minor fix for perltrap.pod X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9bf4ea843f7631689691908b2ccde8f571b18cde;p=p5sagit%2Fp5-mst-13.2.git minor fix for perltrap.pod perltrap says 'Variables begin with "$" or "@" in Perl.' (twice) without addressing the possibility of "%". This patch fixes it. Of course, variables can start with "*" (typeglobs) or no special symbol (filehandles, functions) too. Should that be mentioned as well? p5p-msgid: 199709170500.BAA14805@fnx.com --- diff --git a/pod/perltrap.pod b/pod/perltrap.pod index 9382789..d35abdd 100644 --- a/pod/perltrap.pod +++ b/pod/perltrap.pod @@ -35,7 +35,7 @@ Curly brackets are required on Cs and Cs. =item * -Variables begin with "$" or "@" in Perl. +Variables begin with "$", "@" or "%" in Perl. =item * @@ -168,7 +168,7 @@ There's no switch statement. (But it's easy to build one on the fly.) =item * -Variables begin with "$" or "@" in Perl. +Variables begin with "$", "@" or "%" in Perl. =item *