Added additional example to min/max doc
authorJulian <dev@c33s.net>
Sun, 26 Jan 2014 23:35:05 +0000 (00:35 +0100)
committerFabien Potencier <fabien.potencier@gmail.com>
Mon, 24 Feb 2014 15:39:24 +0000 (16:39 +0100)
doc/functions/max.rst
doc/functions/min.rst

index bdc5b75..6f3cfc5 100644 (file)
@@ -15,5 +15,6 @@ When called with a mapping, max ignores keys and only compares values:
 
 .. code-block:: jinja
 
-    {{ max({2: "two", 1: "one", 3: "three", 5: "five", 4: "for"}) }}
-    {# return "two" #}
+    {{ max({2: "e", 1: "a", 3: "b", 5: "d", 4: "c"}) }}
+    {# returns "e" #}
+
index b924b03..7b6a65e 100644 (file)
@@ -15,5 +15,6 @@ When called with a mapping, min ignores keys and only compares values:
 
 .. code-block:: jinja
 
-    {{ min({2: "two", 1: "one", 3: "three", 5: "five", 4: "for"}) }}
-    {# return "five" #}
+    {{ min({2: "e", 3: "a", 1: "b", 5: "d", 4: "c"}) }}
+    {# returns "a" #}
+