From: Rafael Garcia-Suarez Date: Tue, 18 Jun 2002 18:42:49 +0000 (+0000) Subject: perlsyn.pod tweak suggested by Larry. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a6b1f6d89df0d127006aee73130c3677d8155cc4;p=p5sagit%2Fp5-mst-13.2.git perlsyn.pod tweak suggested by Larry. p4raw-id: //depot/perl@17284 --- diff --git a/pod/perlsyn.pod b/pod/perlsyn.pod index efb8d8a..c279330 100644 --- a/pod/perlsyn.pod +++ b/pod/perlsyn.pod @@ -33,13 +33,13 @@ as C<0>; when used as a string, it is treated the empty string, C<"">; and when used as a reference that isn't being assigned to, it is treated as an error. If you enable warnings, you'll be notified of an uninitialized value whenever you treat C -as a string or a number. Well, usually. Boolean ("don't-care") -contexts, such as: +as a string or a number. Well, usually. Boolean contexts, such as: my $a; if ($a) {} -are exempt from warnings. Operators such as C<++>, C<-->, C<+=>, +are exempt from warnings (because they care about truth rather than +definedness). Operators such as C<++>, C<-->, C<+=>, C<-=>, and C<.=>, that operate on undefined left values such as: my $a;