summaryrefslogtreecommitdiff
path: root/gv.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2015-05-08 21:21:17 -0600
committerKarl Williamson <khw@cpan.org>2015-09-03 23:10:37 -0600
commit4a4088c46812cbd5bfe69cf9728912de92c28b94 (patch)
treeff2642d4f0a20b71043c762b42f5f4a5b498033c /gv.c
parentdfcfced87c53cd0e680cd0c19f02f785a2ad6692 (diff)
downloadperl-4a4088c46812cbd5bfe69cf9728912de92c28b94.tar.gz
perlapi use 'UTF-8' instead of variants of that
Diffstat (limited to 'gv.c')
-rw-r--r--gv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gv.c b/gv.c
index 15b493d223..e82f18dda0 100644
--- a/gv.c
+++ b/gv.c
@@ -318,14 +318,14 @@ stash element, it is the caller's responsibility to ensure that the name
passed to this function matches the name of the element. If it does not
match, perl's internal bookkeeping will get out of sync.
-C<flags> can be set to C<SVf_UTF8> if C<name> is a UTF8 string, or
+C<flags> can be set to C<SVf_UTF8> if C<name> is a UTF-8 string, or
the return value of SvUTF8(sv). It can also take the
C<GV_ADDMULTI> flag, which means to pretend that the GV has been
seen before (i.e., suppress "Used once" warnings).
=for apidoc gv_init
-The old form of C<gv_init_pvn()>. It does not work with UTF8 strings, as it
+The old form of C<gv_init_pvn()>. It does not work with UTF-8 strings, as it
has no flags parameter. If the C<multi> parameter is set, the
C<GV_ADDMULTI> flag will be passed to C<gv_init_pvn()>.