[Catalyst-commits] r6975 -
	trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial
    bricas at dev.catalyst.perl.org 
    bricas at dev.catalyst.perl.org
       
    Tue Oct  9 21:09:33 GMT 2007
    
    
  
Author: bricas
Date: 2007-10-09 21:09:33 +0100 (Tue, 09 Oct 2007)
New Revision: 6975
Modified:
   trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/Debugging.pod
Log:
variable escaping issue [rindolf]
Modified: trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/Debugging.pod
===================================================================
--- trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/Debugging.pod	2007-10-09 19:48:12 UTC (rev 6974)
+++ trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/Debugging.pod	2007-10-09 20:09:33 UTC (rev 6975)
@@ -79,7 +79,7 @@
 
     $c->log->info("Starting the foreach loop here");
 
-    $c->log->debug("Value of $id is: ".$id);
+    $c->log->debug("Value of \$id is: ".$id);
 
 Then the Catalyst development server will display your message along
 with the other debug output. To accomplish the same thing in a TTSite
    
    
More information about the Catalyst-commits
mailing list