]> git.ipfire.org Git - thirdparty/jinja.git/commitdiff
Fixed typos on docstrings of template filters. 275/head
authorHyunjun Kim <yoloseem@users.noreply.github.com>
Fri, 1 Nov 2013 04:48:22 +0000 (13:48 +0900)
committerHyunjun Kim <kim@hyunjun.kr>
Fri, 1 Nov 2013 04:49:34 +0000 (13:49 +0900)
appying -> applying

jinja2/filters.py

index 70bb94824faa26d0879e1ccbd1d8183ff2f81f31..299afae923470b81635050d6e9cd87b449a71292 100644 (file)
@@ -842,7 +842,7 @@ def do_map(*args, **kwargs):
 
 @contextfilter
 def do_select(*args, **kwargs):
-    """Filters a sequence of objects by appying a test to the object and only
+    """Filters a sequence of objects by applying a test to the object and only
     selecting the ones with the test succeeding.
 
     Example usage:
@@ -859,7 +859,7 @@ def do_select(*args, **kwargs):
 
 @contextfilter
 def do_reject(*args, **kwargs):
-    """Filters a sequence of objects by appying a test to the object and
+    """Filters a sequence of objects by applying a test to the object and
     rejecting the ones with the test succeeding.
 
     Example usage:
@@ -875,7 +875,7 @@ def do_reject(*args, **kwargs):
 
 @contextfilter
 def do_selectattr(*args, **kwargs):
-    """Filters a sequence of objects by appying a test to an attribute of an
+    """Filters a sequence of objects by applying a test to an attribute of an
     object and only selecting the ones with the test succeeding.
 
     Example usage:
@@ -892,7 +892,7 @@ def do_selectattr(*args, **kwargs):
 
 @contextfilter
 def do_rejectattr(*args, **kwargs):
-    """Filters a sequence of objects by appying a test to an attribute of an
+    """Filters a sequence of objects by applying a test to an attribute of an
     object or the attribute and rejecting the ones with the test succeeding.
 
     .. sourcecode:: jinja