diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-04-24 10:31:28 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-04-24 10:31:28 +0000 |
commit | b708784ed29bddb36a466db5f726fe7b7635e19b (patch) | |
tree | 92a122ed8f06a2782dcf5b8db39a49b27343fddb /pod/perlfunc.pod | |
parent | 0d746ee5c1be80219aec2680f655ad5be66ccdf0 (diff) | |
download | perl-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.pod | 2 |
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. |