summaryrefslogtreecommitdiff
path: root/mg.c
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2004-08-03 19:20:18 +0000
committerDave Mitchell <davem@fdisolutions.com>2004-08-03 19:20:18 +0000
commitddfa107c1b1f4a56f36bb18fc7c4fc45ab1119d0 (patch)
tree20749f54854e994d2cfb2481d63f327ea4e6470a /mg.c
parent9720141bbbaf9dc75f85beae2c8d043b2ab26492 (diff)
downloadperl-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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mg.c b/mg.c
index bf9ecee8cb..ee705ada89 100644
--- a/mg.c
+++ b/mg.c
@@ -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