summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-11-29 17:59:26 -0800
committerFather Chrysostomos <sprout@cpan.org>2011-11-29 17:59:26 -0800
commitf9946bfddcb8263a2a12f0d56fe1d31ecdafcdec (patch)
tree685507a58808467ac34451aa6f55b773e9d6f910 /sv.c
parentf9509170c89f15affdd1afdeff1c5fcbc00c51a3 (diff)
downloadperl-f9946bfddcb8263a2a12f0d56fe1d31ecdafcdec.tar.gz
sv.c: typo
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sv.c b/sv.c
index 93462a7f8c..f1fe1f2480 100644
--- a/sv.c
+++ b/sv.c
@@ -8441,7 +8441,7 @@ Creates a new SV with its SvPVX_const pointing to a shared string in the string
table. If the string does not already exist in the table, it is
created first. Turns on READONLY and FAKE. If the C<hash> parameter
is non-zero, that value is used; otherwise the hash is computed.
-The string's hash can be later be retrieved from the SV
+The string's hash can later be retrieved from the SV
with the C<SvSHARED_HASH()> macro. The idea here is
that as the string table is used for shared hash keys these strings will have
SvPVX_const == HeKEY and hash lookup will avoid string compare.