diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2004-08-03 19:20:18 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2004-08-03 19:20:18 +0000 |
commit | ddfa107c1b1f4a56f36bb18fc7c4fc45ab1119d0 (patch) | |
tree | 20749f54854e994d2cfb2481d63f327ea4e6470a /mg.c | |
parent | 9720141bbbaf9dc75f85beae2c8d043b2ab26492 (diff) | |
download | perl-ddfa107c1b1f4a56f36bb18fc7c4fc45ab1119d0.tar.gz |
more typo fixes for change 3176 (comments at top of .c files)
p4raw-id: //depot/perl@23187
Diffstat (limited to 'mg.c')
-rw-r--r-- | mg.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -20,10 +20,10 @@ "magical" properties. When any Perl code tries to read from, or assign to, an SV marked as magical, it calls the 'get' or 'set' function associated with that SV's magic. A get is called prior to reading an SV, in order to -give it a chance to update its interval value (get on $. writes the line +give it a chance to update its internal value (get on $. writes the line number of the last read filehandle into to the SV's IV slot), while set is called after an SV has been written to, in order to allow it to make -use of it's changed value (set on $/ copies the SV's new value to the +use of its changed value (set on $/ copies the SV's new value to the PL_rs global variable). Magic is implemented as a linked list of MAGIC structures attached to the |