From 3bb9fd013171017d6a8e6d15596f69c350a23a1a Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Sat, 31 Aug 2019 14:40:12 -0600 Subject: Change pod for macros that require "literal strings" Now that Devel::PPPort has the ability to handle these, we can loosen the syntax for clarity. --- cop.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'cop.h') diff --git a/cop.h b/cop.h index dfca7e486b..00396f04a4 100644 --- a/cop.h +++ b/cop.h @@ -190,7 +190,7 @@ associated with the key. Perl_refcounted_he_fetch_pvn(aTHX_ cophh, keypv, keylen, hash, flags) /* -=for apidoc Amx|SV *|cophh_fetch_pvs|const COPHH *cophh|"literal string" key|U32 flags +=for apidoc Amx|SV *|cophh_fetch_pvs|const COPHH *cophh|"key"|U32 flags Like L, but takes a literal string instead of a string/length pair, and no precomputed hash. @@ -296,7 +296,7 @@ be stored with referential integrity, but will be coerced to strings. Perl_refcounted_he_new_pvn(aTHX_ cophh, keypv, keylen, hash, value, flags) /* -=for apidoc Amx|COPHH *|cophh_store_pvs|const COPHH *cophh|"literal string" key|SV *value|U32 flags +=for apidoc Amx|COPHH *|cophh_store_pvs|const COPHH *cophh|"key"|SV *value|U32 flags Like L, but takes a literal string instead of a string/length pair, and no precomputed hash. @@ -353,7 +353,7 @@ hash of the key string, or zero if it has not been precomputed. (SV *)NULL, flags) /* -=for apidoc Amx|COPHH *|cophh_delete_pvs|const COPHH *cophh|"literal string" key|U32 flags +=for apidoc Amx|COPHH *|cophh_delete_pvs|const COPHH *cophh|"key"|U32 flags Like L, but takes a literal string instead of a string/length pair, and no precomputed hash. @@ -493,7 +493,7 @@ associated with the key. cophh_fetch_pvn(CopHINTHASH_get(cop), keypv, keylen, hash, flags) /* -=for apidoc Am|SV *|cop_hints_fetch_pvs|const COP *cop|"literal string" key|U32 flags +=for apidoc Am|SV *|cop_hints_fetch_pvs|const COP *cop|"key"|U32 flags Like L, but takes a literal string instead of a string/length pair, and no precomputed hash. -- cgit v1.2.1