diff options
author | Vincent Pit <perl@profvince.com> | 2010-03-03 14:48:58 +0100 |
---|---|---|
committer | Vincent Pit <perl@profvince.com> | 2010-03-03 14:49:05 +0100 |
commit | 801ed997c7a7937af6eb7d7e84217db79179b4f4 (patch) | |
tree | a6ad3090967ea7fc0bb33c38575740822f0101c4 /ext | |
parent | 10517af500e340b88209d95ddbb26f6252464272 (diff) | |
download | perl-801ed997c7a7937af6eb7d7e84217db79179b4f4.tar.gz |
Fix an example for LC_COLLATE in POSIX.pod that actually sets LC_ALL
Spotted by Olivier Raginel.
Diffstat (limited to 'ext')
-rw-r--r-- | ext/POSIX/POSIX.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/POSIX/POSIX.pod b/ext/POSIX/POSIX.pod index 5a2137cfb0..64852e94b6 100644 --- a/ext/POSIX/POSIX.pod +++ b/ext/POSIX/POSIX.pod @@ -1103,7 +1103,7 @@ Spanish. B<NOTE>: The naming and availability of locales depends on your operating system. Please consult L<perllocale> for how to find out which locales are available in your system. - $loc = setlocale( LC_ALL, "es_AR.ISO8859-1" ); + $loc = setlocale( LC_COLLATE, "es_AR.ISO8859-1" ); =item setpgid |