[Templates-svn] r1111 - in trunk: docs/src/Manual docsrc/src/Manual lib/Template/Manual

svn at template-toolkit.org svn at template-toolkit.org
Thu Jan 24 05:45:42 GMT 2008


Author: sean
Date: 2008-01-24 05:45:33 +0000 (Thu, 24 Jan 2008)
New Revision: 1111

Modified:
   trunk/docs/src/Manual/Views.html
   trunk/docsrc/src/Manual/Views.tt2
   trunk/lib/Template/Manual/Views.pod
Log:
Documentation fix.



Modified: trunk/docs/src/Manual/Views.html
===================================================================
--- trunk/docs/src/Manual/Views.html	2008-01-23 22:45:22 UTC (rev 1110)
+++ trunk/docs/src/Manual/Views.html	2008-01-24 05:45:33 UTC (rev 1111)
@@ -497,8 +497,8 @@
 <pre>    sub present {
 	my ($self, $view) = @_;
 	return &quot;a Foo::Bar object:\n&quot;
-	     . &quot;thingies: &quot; . $view.print($self-&gt;{ _THINGIES }) . &quot;\n&quot;
-             . &quot;doodahs: &quot; . $view.print($self-&gt;{ _DOODAHS }) . &quot;\n&quot;;
+	     . &quot;thingies: &quot; . $view-&gt;print($self-&gt;{ _THINGIES }) . &quot;\n&quot;
+             . &quot;doodahs: &quot; . $view-&gt;print($self-&gt;{ _DOODAHS }) . &quot;\n&quot;;
     }</pre>
 <p>
 The object is free to delve deeply into its innards and mess around with

Modified: trunk/docsrc/src/Manual/Views.tt2
===================================================================
--- trunk/docsrc/src/Manual/Views.tt2	2008-01-23 22:45:22 UTC (rev 1110)
+++ trunk/docsrc/src/Manual/Views.tt2	2008-01-24 05:45:33 UTC (rev 1111)
@@ -471,8 +471,8 @@
     sub present {
 	my ($self, $view) = @_;
 	return "a Foo::Bar object:\n"
-	     . "thingies: " . $view.print($self->{ _THINGIES }) . "\n"
-             . "doodahs: " . $view.print($self->{ _DOODAHS }) . "\n";
+	     . "thingies: " . $view->print($self->{ _THINGIES }) . "\n"
+             . "doodahs: " . $view->print($self->{ _DOODAHS }) . "\n";
     }
 
 The object is free to delve deeply into its innards and mess around with

Modified: trunk/lib/Template/Manual/Views.pod
===================================================================
--- trunk/lib/Template/Manual/Views.pod	2008-01-23 22:45:22 UTC (rev 1110)
+++ trunk/lib/Template/Manual/Views.pod	2008-01-24 05:45:33 UTC (rev 1111)
@@ -479,8 +479,8 @@
     sub present {
         my ($self, $view) = @_;
         return "a Foo::Bar object:\n"
-             . "thingies: " . $view.print($self->{ _THINGIES }) . "\n"
-             . "doodahs: " . $view.print($self->{ _DOODAHS }) . "\n";
+             . "thingies: " . $view->print($self->{ _THINGIES }) . "\n"
+             . "doodahs: " . $view->print($self->{ _DOODAHS }) . "\n";
     }
 
 The object is free to delve deeply into its innards and mess around with




More information about the templates-svn mailing list