From: Georg Brandl Date: Sun, 11 May 2008 10:30:19 +0000 (+0200) Subject: Fix two typos. X-Git-Tag: 2.0rc1~66^2~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ac61b24fedc24dafdb7e9b304d12898aa2e789da;p=jinja2.git Fix two typos. --HG-- branch : trunk --- diff --git a/docs/api.rst b/docs/api.rst index 4ce79ff..70a1d96 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -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 diff --git a/docs/templates.rst b/docs/templates.rst index d7a0f91..f1dda26 100644 --- a/docs/templates.rst +++ b/docs/templates.rst @@ -212,7 +212,7 @@ precedes it. For better readability statements that start a block (such as # for item in seq: ... - # endif + # endfor .. _template-inheritance: