summaryrefslogtreecommitdiff
path: root/pod/perlfunc.pod
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-04-24 10:31:28 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-04-24 10:31:28 +0000
commitb708784ed29bddb36a466db5f726fe7b7635e19b (patch)
tree92a122ed8f06a2782dcf5b8db39a49b27343fddb /pod/perlfunc.pod
parent0d746ee5c1be80219aec2680f655ad5be66ccdf0 (diff)
downloadperl-b708784ed29bddb36a466db5f726fe7b7635e19b.tar.gz
Remove the code that handles assignment to state variables
p4raw-id: //depot/perl@31049
Diffstat (limited to 'pod/perlfunc.pod')
-rw-r--r--pod/perlfunc.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod
index 599017b3f5..d7d9044e7b 100644
--- a/pod/perlfunc.pod
+++ b/pod/perlfunc.pod
@@ -6011,7 +6011,7 @@ X<state>
=item state TYPE EXPR : ATTRS
C<state> declares a lexically scoped variable, just like C<my> does.
-However, those variables will be initialized only once, contrary to
+However, those variables will never be reinitialized, contrary to
lexical variables that are reinitialized each time their enclosing block
is entered.