sv.c apidocs: SV_NOSTEAL, not NOSTEAL
authorFather Chrysostomos <sprout@cpan.org>
Wed, 13 Nov 2013 14:05:21 +0000 (06:05 -0800)
committerFather Chrysostomos <sprout@cpan.org>
Thu, 14 Nov 2013 13:54:35 +0000 (05:54 -0800)
NOSTEAL is nonexistent.  While abbreviating constants may be fine for
comments, using such forms in API documentation may be less than
helpful.

sv.c

diff --git a/sv.c b/sv.c
index 06ef9ed..a9532e4 100644 (file)
--- a/sv.c
+++ b/sv.c
@@ -3680,7 +3680,7 @@ Loosely speaking, it performs a copy-by-value, obliterating any previous
 content of the destination.
 If the C<flags> parameter has the C<SV_GMAGIC> bit set, will C<mg_get> on
 C<ssv> if appropriate, else not.  If the C<flags>
-parameter has the C<NOSTEAL> bit set then the
+parameter has the C<SV_NOSTEAL> bit set then the
 buffers of temps will not be stolen.  <sv_setsv>
 and C<sv_setsv_nomg> are implemented in terms of this function.