typos
diff --git a/doc/build/content/defs.txt b/doc/build/content/defs.txt
index 31d2557..f17791e 100644
--- a/doc/build/content/defs.txt
+++ b/doc/build/content/defs.txt
@@ -152,7 +152,7 @@
     
     <%def name="conditional(expr)">
         % if expr:
-            ${body()}
+            ${caller.body()}
         % endif
     </%def>
 
@@ -172,7 +172,7 @@
         % for item in somedata:
             <tr>
             % for col in item:
-                <td>${body(col=col)}</td>\
+                <td>${caller.body(col=col)}</td>\
             % endfor
             </tr>
         % endfor
@@ -183,7 +183,7 @@
         Body data: ${col}
     </%call>
     
-Produces:
+Produces (whitespace formatted):
 
     {html}
     <table>