Index: docs/templates.txt
===================================================================
--- docs/templates.txt	(revision 7176)
+++ docs/templates.txt	(working copy)
@@ -429,22 +429,19 @@
     # base.html
 
     {% autoescape off %}
-    <h1>{% block title %}</h1>
-    {% block content %}
+        {% block content %}{% endblock %}
     {% endautoescape %}
 
-
     # child.html
 
     {% extends "base.html" %}
-    {% block title %}This & that{% endblock %}
-    {% block content %}<b>Hello!</b>{% endblock %}
+    {% block content %}{{ greeting }}{% endblock %}
 
-Because auto-escaping is turned off in the base template, it will also be
-turned off in the child template, resulting in the following rendered HTML::
+Because auto-escaping is turned off in the parent template, it will also be
+turned off in the child template, resulting in the following rendered HTML
+when ``greeting`` contains ``'<h1>Hello!</h1>'``::
 
-    <h1>This & that</h1>
-    <b>Hello!</b>
+    <h1>Hello!</h1>
 
 Notes
 -----
