From: Abigail Date: Tue, 26 Sep 2000 13:36:14 +0000 (-0400) Subject: Documentation glitch in magic autoincrement. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9c0670e1eab17cd3b7453bbff593c4ad6ff9bde0;p=p5sagit%2Fp5-mst-13.2.git Documentation glitch in magic autoincrement. Message-ID: <20000926173614.4356.qmail@foad.org> p4raw-id: //depot/perl@7121 --- diff --git a/pod/perlop.pod b/pod/perlop.pod index 945d4f3..32eaa3c 100644 --- a/pod/perlop.pod +++ b/pod/perlop.pod @@ -119,7 +119,7 @@ you increment a variable that is numeric, or that has ever been used in a numeric context, you get a normal increment. If, however, the variable has been used in only string contexts since it was set, and has a value that is not the empty string and matches the pattern -C, the increment is done as a string, preserving each +C, the increment is done as a string, preserving each character within its range, with carry: print ++($foo = '99'); # prints '100'