removed whitespaces in docs
authorFabien Potencier <fabien.potencier@gmail.com>
Sat, 26 Oct 2013 06:34:09 +0000 (08:34 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Sat, 26 Oct 2013 06:34:09 +0000 (08:34 +0200)
doc/filters/abs.rst
doc/filters/url_encode.rst

index 3a82f62..22fa59d 100644 (file)
@@ -6,9 +6,9 @@ The ``abs`` filter returns the absolute value.
 .. code-block:: jinja
 
     {# number = -5 #}
-    
+
     {{ number|abs }}
-    
+
     {# outputs 5 #}
 
 .. note::
index b4f9a6c..7a35ed1 100644 (file)
@@ -14,7 +14,7 @@ or an array as query string:
 
     {{ "string with spaces"|url_encode(true) }}
     {# outputs "string%20with%20spaces" #}
-    
+
     {{ {'param': 'value', 'foo': 'bar'}|url_encode }}
     {# outputs "param=value&foo=bar" #}