diff options
author | Vadim Konovalov <vadim.konovalov@alcatel-lucent.com> | 2011-01-14 19:08:12 -0500 |
---|---|---|
committer | Jesse Vincent <jesse@bestpractical.com> | 2011-01-14 19:58:23 -0500 |
commit | 058a5f6c07fb65259d48ba7f4bbc3adddd2bb5b1 (patch) | |
tree | 7eb4f7306c7b5a250ef558375114b62251990339 /pod/perlguts.pod | |
parent | d89d11bb61c88f4f5acf442100f3e689da2f7018 (diff) | |
download | perl-058a5f6c07fb65259d48ba7f4bbc3adddd2bb5b1.tar.gz |
Update perlguts.pod so that prose isn't a lie
(Also add a new address for vadim to checkAUTHORS
Diffstat (limited to 'pod/perlguts.pod')
-rw-r--r-- | pod/perlguts.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlguts.pod b/pod/perlguts.pod index 66bcc8da68..fcf436b7a0 100644 --- a/pod/perlguts.pod +++ b/pod/perlguts.pod @@ -671,11 +671,11 @@ your Perl script, use the following routines, depending on the variable type. AV* get_av("package::varname", GV_ADD); HV* get_hv("package::varname", GV_ADD); -Notice the use of TRUE as the second parameter. The new variable can now +Notice the use of GV_ADD as the second parameter. The new variable can now be set, using the routines appropriate to the data type. There are additional macros whose values may be bitwise OR'ed with the -C<TRUE> argument to enable certain extra features. Those bits are: +C<GV_ADD> argument to enable certain extra features. Those bits are: =over |