summaryrefslogtreecommitdiff
path: root/pod/perlport.pod
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-11-06 23:58:48 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-11-06 23:58:48 +0000
commit6be8f7a639aa6b6c116e29c11f6b58a558cf0865 (patch)
tree15fe75d73bdd81c0a6a78f6c3c2c64acbf02b6d3 /pod/perlport.pod
parente3f494f1ad12aae0db4dead20ca74fde31e03266 (diff)
downloadperl-6be8f7a639aa6b6c116e29c11f6b58a558cf0865.tar.gz
%ENV note tweaks from Dan Sugalski.
p4raw-id: //depot/perl@7583
Diffstat (limited to 'pod/perlport.pod')
-rw-r--r--pod/perlport.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlport.pod b/pod/perlport.pod
index a06da4490b..ebb20b293a 100644
--- a/pod/perlport.pod
+++ b/pod/perlport.pod
@@ -335,7 +335,7 @@ operating systems put mandatory locks on such files.
Don't count on a specific environment variable existing in C<%ENV>.
Don't count on C<%ENV> entries being case-sensitive, or even
case-preserving. Don't try to clear %ENV by saying C<%ENV = ();>, or,
-if you really have to, make it conditional on C<$^O ne 'vms'> since in
+if you really have to, make it conditional on C<$^O ne 'VMS'> since in
VMS the C<%ENV> table is much more than a per-process key-value string
table.