]> git.ipfire.org Git - thirdparty/jinja.git/commitdiff
Fix typo in docstring (#779)
authorRicardo Lafuente <rlafuente@users.noreply.github.com>
Mon, 16 Oct 2017 11:11:44 +0000 (12:11 +0100)
committerAdrian <adrian@planetcoding.net>
Mon, 16 Oct 2017 11:11:44 +0000 (13:11 +0200)
jinja2/filters.py

index 07e8ccae8d5718d457277dfe1b60bb4cd53cc535..267ddddaa03478ed77d640c011b8f2c0d6641d04 100644 (file)
@@ -339,7 +339,7 @@ def do_min(environment, value, case_sensitive=False, attribute=None):
 
 @environmentfilter
 def do_max(environment, value, case_sensitive=False, attribute=None):
-    """Return the smallest item from the sequence.
+    """Return the largest item from the sequence.
 
     .. sourcecode:: jinja