diff options
author | brian d foy <brian.d.foy@gmail.com> | 2010-08-21 12:03:46 -0500 |
---|---|---|
committer | brian d foy <brian.d.foy@gmail.com> | 2010-09-14 12:19:03 -0500 |
commit | 84adb7243d1e8c527659f32895b8cc8e6ea27401 (patch) | |
tree | 7790bf8c99d151cd3410a77adb3d567b07cfb884 /pod/perlfaq8.pod | |
parent | 820b2690a908738e3f3ed2d0610107e771c57cf8 (diff) | |
download | perl-84adb7243d1e8c527659f32895b8cc8e6ea27401.tar.gz |
Fix trailing whitespace
Diffstat (limited to 'pod/perlfaq8.pod')
-rw-r--r-- | pod/perlfaq8.pod | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/pod/perlfaq8.pod b/pod/perlfaq8.pod index 08a5b038b4..99af392875 100644 --- a/pod/perlfaq8.pod +++ b/pod/perlfaq8.pod @@ -545,7 +545,7 @@ details of this, see the section on signals, especially the time-out handler for a blocking C<flock()> in L<perlipc/"Signals"> or the section on "Signals" in I<Programming Perl>. -If exception handling is all you're interested in, use one of the +If exception handling is all you're interested in, use one of the many CPAN modules that handle exceptions, such as C<Try::Tiny>. If you want the C<atexit()> syntax (and an C<rmexit()> as well), try the @@ -1263,7 +1263,7 @@ See the entry for C<use> in L<perlfunc> for more details. =head2 How do I keep my own module/library directory? -When you build modules, tell Perl where to install the modules. +When you build modules, tell Perl where to install the modules. If you want to install modules for your own use, the easiest way might be C<local::lib>, which you can download from CPAN. It sets various @@ -1349,9 +1349,9 @@ directory of the currently running script and puts it in C<$Bin>, which you can then use to construct the right library path: use FindBin qw($Bin); - + You can also use C<local::lib> to do much of the same thing. Install -modules using C<local::lib>'s settings then use the module in your +modules using C<local::lib>'s settings then use the module in your program: use local::lib; # sets up a local lib at ~/perl5 @@ -1386,9 +1386,9 @@ environment variables, run-time switches, and in-code statements: =item the C<local::lib> module: use local::lib; - + use local::lib "~/myown_perllib"; - + =back The last is particularly useful because it knows about machine |