diff options
author | Karl Williamson <public@khwilliamson.com> | 2012-12-20 16:16:26 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2012-12-22 09:48:20 -0700 |
commit | 5df2f14060151be4cc3b594dc3d3b06711029df2 (patch) | |
tree | afaa4d0a7e4bf87238fbb6b4633ea06de59d8b81 /sv.h | |
parent | 4200a00c234411fe4800088d64b581357643b307 (diff) | |
download | perl-5df2f14060151be4cc3b594dc3d3b06711029df2.tar.gz |
perlapi: Clarify return value of SvREFCNT_inc()
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -244,7 +244,7 @@ struct p5rx { Returns the value of the object's reference count. =for apidoc Am|SV*|SvREFCNT_inc|SV* sv -Increments the reference count of the given SV. +Increments the reference count of the given SV, returning the SV. All of the following SvREFCNT_inc* macros are optimized versions of SvREFCNT_inc, and can be replaced with SvREFCNT_inc. |