summaryrefslogtreecommitdiff
path: root/mg.c
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2014-03-31 10:09:22 -0600
committerKarl Williamson <public@khwilliamson.com>2014-04-01 10:54:40 -0600
commitb53c43bfc791e6881d9aaf54d66ca1ab0c3f5b60 (patch)
tree5053e208c93b7b09af4847714cc39ceeb67ba022 /mg.c
parentce7377a1554acb2ac29e76993dca61273fcc6fa3 (diff)
downloadperl-b53c43bfc791e6881d9aaf54d66ca1ab0c3f5b60.tar.gz
mg.c: Fix comment typo
Diffstat (limited to 'mg.c')
-rw-r--r--mg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mg.c b/mg.c
index c9bded4e0b..6a3a98aaf0 100644
--- a/mg.c
+++ b/mg.c
@@ -23,7 +23,7 @@
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 internal value (get on $. writes the line
-number of the last read filehandle into to the SV's IV slot), while
+number of the last read filehandle into 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 its changed value (set on $/ copies the SV's new value to the
PL_rs global variable).