[svn:perlfaq] r8389 - perlfaq/trunk

[email protected] Tue, 12 Dec 2006 13:11:03 -0800 (PST)
Newsgroups perl.cvs.perlfaq
Message-ID <[email protected]>
Author: comdog
Date: Tue Dec 12 13:10:56 2006
New Revision: 8389

Modified:
   perlfaq/trunk/perlfaq4.pod

Log:
perlfaq4: How do I find yesterday's date?
    + fixed incorrect variable name in example
	+ sync with r8382 from Rafael



Modified: perlfaq/trunk/perlfaq4.pod
==============================================================================
--- perlfaq/trunk/perlfaq4.pod	(original)
+++ perlfaq/trunk/perlfaq4.pod	Tue Dec 12 13:10:56 2006
@@ -491,7 +491,7 @@
 
 	print "Yesterday was $yesterday\n";
 
-You can also use the C<Date::Calc> module using its Today_and_Now
+You can also use the C<Date::Calc> module using its C<Today_and_Now>
 function.
 
 	use Date::Calc qw( Today_and_Now Add_Delta_DHMS );