diff options
author | Karl Williamson <khw@cpan.org> | 2015-05-07 10:58:54 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2015-09-03 23:10:37 -0600 |
commit | 796b6530911f5ebd6a26275873610304e63d5d19 (patch) | |
tree | 9f90c198de8d45bde0c5a0e738d48ec5a005f023 /handy.h | |
parent | 6c5826743fef29ff17b421f17c5b09902acb164c (diff) | |
download | perl-796b6530911f5ebd6a26275873610304e63d5d19.tar.gz |
Various pods: Add C<> around many typed-as-is things
Removes 'the' in front of parameter names in some instances.
Diffstat (limited to 'handy.h')
-rw-r--r-- | handy.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1844,7 +1844,7 @@ source, C<dest> is the destination, C<nitems> is the number of items, and C<type> is the type. Can do overlapping moves. See also C<L</Copy>>. =for apidoc Am|void *|MoveD|void* src|void* dest|int nitems|type -Like C<Move> but returns dest. Useful +Like C<Move> but returns C<dest>. Useful for encouraging compilers to tail-call optimise. @@ -1855,7 +1855,7 @@ C<type> is the type. May fail on overlapping copies. See also C<L</Move>>. =for apidoc Am|void *|CopyD|void* src|void* dest|int nitems|type -Like C<Copy> but returns dest. Useful +Like C<Copy> but returns C<dest>. Useful for encouraging compilers to tail-call optimise. |