diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-07-09 22:08:00 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-07-09 22:23:24 -0600 |
commit | 4c9b78f4fff91b5c7e4f74e09e1bc2838c0f740f (patch) | |
tree | 1bced2eded0447bbe8b5596c34cd013d46d2e892 /ext | |
parent | ccd65d51403426e176072af492d832677521af9f (diff) | |
download | perl-4c9b78f4fff91b5c7e4f74e09e1bc2838c0f740f.tar.gz |
locale documentation: Grammaar and appearance nits
Diffstat (limited to 'ext')
-rw-r--r-- | ext/POSIX/lib/POSIX.pod | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/ext/POSIX/lib/POSIX.pod b/ext/POSIX/lib/POSIX.pod index ff201b8939..325d92af13 100644 --- a/ext/POSIX/lib/POSIX.pod +++ b/ext/POSIX/lib/POSIX.pod @@ -728,8 +728,7 @@ for creating hard links into files, see L<perlfunc/link>. Get numeric formatting information. Returns a reference to a hash containing the current locale formatting values. Users of this function should also read L<perllocale>, where there is a -discussion devoted to this function -(L<perllocale/The localeconv function>). +L<discussion devoted to this function|perllocale/The localeconv function>. Here is how to query the database for the B<de> (Deutsch or German) locale. @@ -1086,11 +1085,11 @@ see L<perlfunc/eval>. =item setlocale Modifies and queries the program's underlying locale. Users of this -function should also read L<perllocale>, where there is a discussion -devoted to this function (L<perllocale/The setlocale function>). +function should also read L<perllocale>, where there is a +L<discussion devoted to this function|perllocale/The setlocale function>. Note that Perl itself is almost entirely unaffected by the locale except within the scope of S<C<"use locale">>. (Exceptions are listed -in L<perllocale/Not within the scope of any use locale variant>.) +in L<perllocale/Not within the scope of any "use locale" variant>.) The following examples assume @@ -1110,7 +1109,7 @@ argument means 'query'.) The following will set the LC_CTYPE behaviour according to the locale environment variables (the second argument C<"">). -Please see your systems C<setlocale(3)> documentation for the locale +Please see your system's C<setlocale(3)> documentation for the locale environment variables' meaning or consult L<perllocale>. $loc = setlocale( LC_CTYPE, "" ); |