diff options
author | Brian Gottreu <gottreu@gmail.com> | 2013-07-10 08:14:35 -0500 |
---|---|---|
committer | Steffen Mueller <smueller@cpan.org> | 2013-07-10 16:24:36 +0200 |
commit | c07def6d1f2b66b4a9bf2b14c0357f6f4889492e (patch) | |
tree | 2cef8c284109a0b986b5e1a8690929a0da644699 /sv.h | |
parent | 52a9d53bdd6a4845c7ec443f355db3a9a43c6918 (diff) | |
download | perl-c07def6d1f2b66b4a9bf2b14c0357f6f4889492e.tar.gz |
Fix typo in docs for SvPV: ") => >"
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1478,7 +1478,7 @@ C<SvPVx> for a version which guarantees to evaluate sv only once. Note that there is no guarantee that the return value of C<SvPV()> is equal to C<SvPVX(sv)>, or that C<SvPVX(sv)> contains valid data, or that -successive calls to C<SvPV(sv)) will return the same pointer value each +successive calls to C<SvPV(sv)> will return the same pointer value each time. This is due to the way that things like overloading and Copy-On-Write are handled. In these cases, the return value may point to a temporary buffer or similar. If you absolutely need the SvPVX field to |