summaryrefslogtreecommitdiff
path: root/pod/perlembed.pod
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2018-01-21 10:08:33 -0700
committerKarl Williamson <khw@cpan.org>2018-01-30 22:12:46 -0700
commitc259273413d49173839cee5e7022ef968da82185 (patch)
tree10983cf3cc0bd703ffb418dc3b4f68446c58d056 /pod/perlembed.pod
parentd4fe620715e0928f3ccf8a60d20c9393bbb3527f (diff)
downloadperl-c259273413d49173839cee5e7022ef968da82185.tar.gz
perlembed: Fix typos
Perl is capitalized when referring to the language; lowercased when referring to a particular executable.
Diffstat (limited to 'pod/perlembed.pod')
-rw-r--r--pod/perlembed.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlembed.pod b/pod/perlembed.pod
index adcaf958b5..2196ad8094 100644
--- a/pod/perlembed.pod
+++ b/pod/perlembed.pod
@@ -1097,13 +1097,13 @@ to use the system's default locale. This is often, but not necessarily,
the "C" or "POSIX" locale. Absent a S<C<"use locale">> within the perl
code, this mostly has no effect (but see L<perllocale/Not within the
scope of "use locale">). Also, there is not a problem if the
-locale you want to use in your embedded Perl is the same as the system
+locale you want to use in your embedded perl is the same as the system
default. However, this doesn't work if you have set up and want to use
a locale that isn't the system default one. Starting in Perl v5.20, you
can tell the embedded Perl interpreter that the locale is already
properly set up, and to skip doing its own normal initialization. It
skips if the environment variable C<PERL_SKIP_LOCALE_INIT> is set (even
-if set to 0 or C<"">). A Perl that has this capability will define the
+if set to 0 or C<"">). A perl that has this capability will define the
C pre-processor symbol C<HAS_SKIP_LOCALE_INIT>. This allows code that
has to work with multiple Perl versions to do some sort of work-around
when confronted with an earlier Perl.