Fix typos.
authorChristoph Zwerschke <cito@online.de>
Sun, 23 Oct 2011 16:23:58 +0000 (18:23 +0200)
committerRon DuPlain <ron.duplain@gmail.com>
Tue, 13 Mar 2012 23:57:39 +0000 (16:57 -0700)
docs/templates.rst
jinja2/filters.py

index 3032e3a6ac6a39de57b8d5e235cbb57878579684..a21e331031b5d216c518305f60f5887a0524e37b 100644 (file)
@@ -332,7 +332,7 @@ advantage of it, see :ref:`null-master-fallback`.
 
 The filename of the template depends on the template loader.  For example the
 :class:`FileSystemLoader` allows you to access other templates by giving the
-filename.  You can access templates in subdirectories with an slash::
+filename.  You can access templates in subdirectories with a slash::
 
     {% extends "layout/default.html" %}
 
@@ -819,7 +819,7 @@ Jinja2 supports putting often used code into macros.  These macros can go into
 different templates and get imported from there.  This works similar to the
 import statements in Python.  It's important to know that imports are cached
 and imported templates don't have access to the current template variables,
-just the globals by defualt.  For more details about context behavior of
+just the globals by default.  For more details about context behavior of
 imports and includes see :ref:`import-visibility`.
 
 There are two ways to import templates.  You can import the complete template
index 570263c5d1f527438a7c43693ee2bf654cda8f1c..8fef6eaa322b94f68e07a9c177b1cc4eea159eda 100644 (file)
@@ -583,7 +583,7 @@ def do_batch(value, linecount, fill_with=None):
     A filter that batches items. It works pretty much like `slice`
     just the other way round. It returns a list of lists with the
     given number of items. If you provide a second parameter this
-    is used to fill missing items. See this example:
+    is used to fill up missing items. See this example:
 
     .. sourcecode:: html+jinja