From e351f674e6a88ff247fa4beb366be75d6f9bdcd5 Mon Sep 17 00:00:00 2001 From: Hyunjun Kim Date: Fri, 1 Nov 2013 13:48:22 +0900 Subject: [PATCH] Fixed typos on docstrings of template filters. appying -> applying --- jinja2/filters.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/jinja2/filters.py b/jinja2/filters.py index 70bb9482..299afae9 100644 --- a/jinja2/filters.py +++ b/jinja2/filters.py @@ -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 -- 2.47.2