diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-11-29 17:59:26 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-11-29 17:59:26 -0800 |
commit | f9946bfddcb8263a2a12f0d56fe1d31ecdafcdec (patch) | |
tree | 685507a58808467ac34451aa6f55b773e9d6f910 /sv.c | |
parent | f9509170c89f15affdd1afdeff1c5fcbc00c51a3 (diff) | |
download | perl-f9946bfddcb8263a2a12f0d56fe1d31ecdafcdec.tar.gz |
sv.c: typo
Diffstat (limited to 'sv.c')
-rw-r--r-- | sv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. |