From ee866a98a2c6c8f8c63a821870f384f434389953 Mon Sep 17 00:00:00 2001 From: chromatic Date: Mon, 14 Nov 2011 13:14:59 -0800 Subject: [PATCH] Cleaned up some results for Andy Lester's commits. --- sections/chapter_00.pod | 6 ++---- sections/files.pod | 14 ++++++++------ sections/missing_defaults.pod | 3 ++- 3 files changed, 12 insertions(+), 11 deletions(-) diff --git a/sections/chapter_00.pod b/sections/chapter_00.pod index 05c0051c..2f5c474d 100644 --- a/sections/chapter_00.pod +++ b/sections/chapter_00.pod @@ -109,10 +109,8 @@ Choroba, Paulo Custodio, Felipe, Shlomi Fish, Jeremiah Foster, Mark Fowler, John Gabriele, Andrew Grangaard, Bruce Gray, Ask Bjørn Hansen, Tim Heaney, Robert Hicks, Michael Hind, Mark Hindess, Yary Hluchan, Mike Huffman, Curtis Jewell, Mohammed Arafat Kamaal, James E Keenan, Yuval Kogman, Jan Krynicky, -Jeff Lavallee, Moritz Lenz, -Andy Lester, -Jean-Baptiste Mazon, Josh McAdams, Gareth -McCaughan, John McNamara, Shawn M Moore, Alex Muntada, Carl Mäsak, Chris +Jeff Lavallee, Moritz Lenz, Andy Lester, Jean-Baptiste Mazon, Josh McAdams, +Gareth McCaughan, John McNamara, Shawn M Moore, Alex Muntada, Carl Mäsak, Chris Niswander, Nelo Onyiah, Chas. Owens, ww from PerlMonks, Jess Robinson, Dave Rolsky, Gabrielle Roth, Andrew Savige, Lorne Schachter, Dan Scott, Alexander Scott-Johns, Phillip Smith, Christopher E. Stith, Mark A. Stratman, Bryan diff --git a/sections/files.pod b/sections/files.pod index 5e3c4332..7b648e02 100644 --- a/sections/files.pod +++ b/sections/files.pod @@ -539,9 +539,10 @@ X; file test operators> X> Besides reading and writing files, you can also manipulate them as you would -directly from a command line or a file manager. The file test -operators, collectively called the C<-X> operators because they are a hyphen and a single letter, -examine file and directory attributes. For example, to test that a file exists: +directly from a command line or a file manager. The file test operators, +collectively called the C<-X> operators because they are a hyphen and a single +letter, examine file and directory attributes. For example, to test that a file +exists: X; file exists operator> X> @@ -599,6 +600,7 @@ takes two operands, the old name of the file and the new name: X> X> +X> X X X @@ -606,9 +608,9 @@ X There's no core builtin to copy a file, but the core C module provides both C and C functions. Use the C builtin to -remove one or more files. (The C builtin deletes an element from a hash, not a file from the filesystem.) -These functions and builtins all return true values -on success and set C<$!> on error. +remove one or more files. (The C builtin deletes an element from a +hash, not a file from the filesystem.) These functions and builtins all return +true values on success and set C<$!> on error. =begin sidebar diff --git a/sections/missing_defaults.pod b/sections/missing_defaults.pod index 4d260fc6..38d942df 100644 --- a/sections/missing_defaults.pod +++ b/sections/missing_defaults.pod @@ -65,7 +65,8 @@ warnings> for more details. Combine C with C to receive expanded diagnostic messages for each warning present in your programs. These expanded diagnostics come from C. This behavior is useful when learning Perl. -Disable it in deployed software, since it produces verbose output. +Disable it before you deploy your program, because it produces verbose output +which might fill up your logs and expose too much information to users. =end tip