From: Hyunjun Kim Date: Fri, 1 Nov 2013 04:48:22 +0000 (+0900) Subject: Fixed typos on docstrings of template filters. X-Git-Tag: 2.8~29^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e351f674e6a88ff247fa4beb366be75d6f9bdcd5;p=thirdparty%2Fjinja.git Fixed typos on docstrings of template filters. appying -> applying --- 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