summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo van der Sanden <hv@crypt.org>2003-02-17 08:51:53 +0000
committerhv <hv@crypt.org>2003-02-17 08:51:53 +0000
commitd3050d9ddc948efe78c52984619d71727ece2e61 (patch)
tree40e96e566c0c4bc636a9e5d61b6eed234abfbbe4
parentf3f8427d8eb74488a7768102783b300690126cdc (diff)
downloadperl-d3050d9ddc948efe78c52984619d71727ece2e61.tar.gz
fix typo in sv.c and regenerate perlapi.pod
p4raw-id: //depot/perl@18733
-rw-r--r--pod/perlapi.pod2
-rw-r--r--sv.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlapi.pod b/pod/perlapi.pod
index 1d6156066e..36e50cb336 100644
--- a/pod/perlapi.pod
+++ b/pod/perlapi.pod
@@ -3764,7 +3764,7 @@ an xpvmg; if we're a copy-on-write scalar, this is the on-write time when
we do the copy, and is also used locally. If C<SV_COW_DROP_PV> is set
then a copy-on-write scalar drops its PV buffer (if any) and becomes
SvPOK_off rather than making a copy. (Used where this scalar is about to be
-set to some other value.) In addtion, the C<flags> parameter gets passed to
+set to some other value.) In addition, the C<flags> parameter gets passed to
C<sv_unref_flags()> when unrefing. C<sv_force_normal> calls this function
with flags set to 0.
diff --git a/sv.c b/sv.c
index 3dbab25a19..5c7ccec461 100644
--- a/sv.c
+++ b/sv.c
@@ -4363,7 +4363,7 @@ an xpvmg; if we're a copy-on-write scalar, this is the on-write time when
we do the copy, and is also used locally. If C<SV_COW_DROP_PV> is set
then a copy-on-write scalar drops its PV buffer (if any) and becomes
SvPOK_off rather than making a copy. (Used where this scalar is about to be
-set to some other value.) In addtion, the C<flags> parameter gets passed to
+set to some other value.) In addition, the C<flags> parameter gets passed to
C<sv_unref_flags()> when unrefing. C<sv_force_normal> calls this function
with flags set to 0.