diff options
author | Jim Cromie <jim.cromie@gmail.com> | 2010-07-15 11:29:54 -0600 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2010-08-22 08:27:21 -0500 |
commit | 55e6b3b8384dcb3209e3722266a705f00ba5c948 (patch) | |
tree | df8a669f50e5ccfff3bfaf6c02b2aaf56d7dfb26 | |
parent | 24650c4a16e493996fbfbf72b9d841118665a03e (diff) | |
download | perl-55e6b3b8384dcb3209e3722266a705f00ba5c948.tar.gz |
fix spelling err in pod re environmental variable
Signed-off-by: David Golden <dagolden@cpan.org>
-rw-r--r-- | pod/perlrun.pod | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/pod/perlrun.pod b/pod/perlrun.pod index 51a87ee805..75e7ce1009 100644 --- a/pod/perlrun.pod +++ b/pod/perlrun.pod @@ -1272,14 +1272,15 @@ See also hash_seed() of L<Hash::Util>. =item PERL_MEM_LOG X<PERL_MEM_LOG> -If your perl was configured with C<-Accflags=-DPERL_MEM_LOG>, setting the -environment variable C<PERL_MEMLOG> enables logging debug messages. The -value has the form C<< <number>[m][s][t] >>, where C<number> is the -filedescriptor number you want to write to, and the combination of letters -specifies that you want information about (m)emory and/or (s)v, optionally -with (t)imestamps. For example C<PERL_MEMLOG=1mst> will log all -information to stdout. You can write to other opened filedescriptors too, -in a variety of ways; +If your perl was configured with C<-Accflags=-DPERL_MEM_LOG>, setting +the environment variable C<PERL_MEM_LOG> enables logging debug +messages. The value has the form C<< <number>[m][s][t] >>, where +C<number> is the filedescriptor number you want to write to (2 is +default), and the combination of letters specifies that you want +information about (m)emory and/or (s)v, optionally with +(t)imestamps. For example C<PERL_MEM_LOG=1mst> will log all +information to stdout. You can write to other opened filedescriptors +too, in a variety of ways; bash$ 3>foo3 PERL_MEM_LOG=3m perl ... |