Fix two typos.
authorGeorg Brandl <georg@python.org>
Sun, 11 May 2008 10:30:19 +0000 (12:30 +0200)
committerGeorg Brandl <georg@python.org>
Sun, 11 May 2008 10:30:19 +0000 (12:30 +0200)
--HG--
branch : trunk

docs/api.rst
docs/templates.rst

index 4ce79ff686dd0998bb3cfee64112a2e35be4f163..70a1d96cd52b6ee83838919e9628333c33d3d452 100644 (file)
@@ -184,7 +184,6 @@ file system.  The environment will keep the compiled modules in memory like
 Python's `sys.modules`.  Unlike `sys.modules` however this cache is limited in
 size by default and templates are automatically reloaded.
 All loaders are subclasses of :class:`BaseLoader`.  If you want to create your
-
 own loader, subclass :class:`BaseLoader` and override `get_source`.
 
 .. autoclass:: jinja2.loaders.BaseLoader
index d7a0f914487229bf7ecdac55083e384c43533023..f1dda26c6a9bcc49d73294f6098a09b042fba684 100644 (file)
@@ -212,7 +212,7 @@ precedes it.  For better readability statements that start a block (such as
 
     # for item in seq:
         ...
-    # endif
+    # endfor
 
 
 .. _template-inheritance: