[Docs] Some minor fixes: Typos, Notations
authorPhilipp Rieber <p.rieber@gmail.com>
Sat, 23 Nov 2013 14:12:47 +0000 (15:12 +0100)
committerPhilipp Rieber <p.rieber@gmail.com>
Sat, 23 Nov 2013 20:51:26 +0000 (21:51 +0100)
14 files changed:
doc/advanced.rst
doc/advanced_legacy.rst
doc/api.rst
doc/filters/format.rst
doc/filters/join.rst
doc/filters/raw.rst
doc/filters/replace.rst
doc/functions/random.rst
doc/functions/range.rst
doc/functions/source.rst
doc/installation.rst
doc/recipes.rst
doc/tags/use.rst
doc/tests/sameas.rst

index 68a1b81..ea82ce0 100644 (file)
@@ -211,14 +211,14 @@ Automatic Escaping
 ~~~~~~~~~~~~~~~~~~
 
 If automatic escaping is enabled, the output of the filter may be escaped
-before printing. If your filter acts as an escaper (or explicitly outputs html
+before printing. If your filter acts as an escaper (or explicitly outputs HTML
 or JavaScript code), you will want the raw output to be printed. In such a
 case, set the ``is_safe`` option::
 
     $filter = new Twig_SimpleFilter('nl2br', 'nl2br', array('is_safe' => array('html')));
 
 Some filters may need to work on input that is already escaped or safe, for
-example when adding (safe) html tags to originally unsafe output. In such a
+example when adding (safe) HTML tags to originally unsafe output. In such a
 case, set the ``pre_escape`` option to escape the input data before it is run
 through your filter::
 
@@ -278,7 +278,7 @@ to create an instance of ``Twig_SimpleTest``::
     $twig->addTest($test);
 
 Tests allow you to create custom application specific logic for evaluating
-boolean conditions. As a simple, example let's create a Twig test that checks if
+boolean conditions. As a simple example, let's create a Twig test that checks if
 objects are 'red'::
 
     $twig = new Twig_Environment($loader)
index 3d34f93..2b33180 100644 (file)
@@ -244,14 +244,14 @@ Automatic Escaping
 ~~~~~~~~~~~~~~~~~~
 
 If automatic escaping is enabled, the output of the filter may be escaped
-before printing. If your filter acts as an escaper (or explicitly outputs html
-or javascript code), you will want the raw output to be printed. In such a
+before printing. If your filter acts as an escaper (or explicitly outputs HTML
+or JavaScript code), you will want the raw output to be printed. In such a
 case, set the ``is_safe`` option::
 
     $filter = new Twig_Filter_Function('nl2br', array('is_safe' => array('html')));
 
 Some filters may need to work on input that is already escaped or safe, for
-example when adding (safe) html tags to originally unsafe output. In such a
+example when adding (safe) HTML tags to originally unsafe output. In such a
 case, set the ``pre_escape`` option to escape the input data before it is run
 through your filter::
 
index cbccb0f..b00d61e 100644 (file)
@@ -417,15 +417,15 @@ The escaping rules are implemented as follows:
         {{ var|upper|raw }} {# won't be escaped #}
 
 * Automatic escaping is not applied if the last filter in the chain is marked
-  safe for the current context (e.g. ``html`` or ``js``). ``escaper`` and
-  ``escaper('html')`` are marked safe for html, ``escaper('js')`` is marked
-  safe for javascript, ``raw`` is marked safe for everything.
+  safe for the current context (e.g. ``html`` or ``js``). ``escape`` and
+  ``escape('html')`` are marked safe for HTML, ``escape('js')`` is marked
+  safe for JavaScript, ``raw`` is marked safe for everything.
 
   .. code-block:: jinja
 
         {% autoescape 'js' %}
-            {{ var|escape('html') }} {# will be escaped for html and javascript #}
-            {{ var }} {# will be escaped for javascript #}
+            {{ var|escape('html') }} {# will be escaped for HTML and JavaScript #}
+            {{ var }} {# will be escaped for JavaScript #}
             {{ var|escape('js') }} {# won't be double-escaped #}
         {% endautoescape %}
 
index fe55a09..f8effd9 100644 (file)
@@ -8,7 +8,7 @@ The ``format`` filter formats a given string by replacing the placeholders
 
     {{ "I like %s and %s."|format(foo, "bar") }}
 
-    {# returns I like foo and bar
+    {# outputs I like foo and bar
        if the foo parameter equals to the foo string. #}
 
 .. _`sprintf`: http://www.php.net/sprintf
index be10b86..2fab945 100644 (file)
@@ -15,7 +15,7 @@ define it with the optional first parameter:
 .. code-block:: jinja
 
     {{ [1, 2, 3]|join('|') }}
-    {# returns 1|2|3 #}
+    {# outputs 1|2|3 #}
 
 Arguments
 ---------
index 434dd24..a9900c7 100644 (file)
@@ -7,6 +7,6 @@ if ``raw`` is the last filter applied to it:
 
 .. code-block:: jinja
 
-    {% autoescape true %}
+    {% autoescape %}
         {{ var|raw }} {# var won't be escaped #}
     {% endautoescape %}
index 1ab3b38..1227957 100644 (file)
@@ -8,7 +8,7 @@ The ``replace`` filter formats a given string by replacing the placeholders
 
     {{ "I like %this% and %that%."|replace({'%this%': foo, '%that%': "bar"}) }}
 
-    {# returns I like foo and bar
+    {# outputs I like foo and bar
        if the foo parameter equals to the foo string. #}
 
 Arguments
index fcca661..acbffe5 100644 (file)
@@ -18,7 +18,7 @@ parameter type:
 
     {{ random(['apple', 'orange', 'citrus']) }} {# example output: orange #}
     {{ random('ABC') }}                         {# example output: C #}
-    {{ random() }}                              {# example output: 15386094 (works as native PHP `mt_rand`_ function) #}
+    {{ random() }}                              {# example output: 15386094 (works as the native PHP mt_rand function) #}
     {{ random(5) }}                             {# example output: 3 #}
 
 Arguments
index dac0e9b..b7cd011 100644 (file)
@@ -9,7 +9,7 @@ Returns a list containing an arithmetic progression of integers:
         {{ i }},
     {% endfor %}
 
-    {# returns 0, 1, 2, 3 #}
+    {# outputs 0, 1, 2, 3, #}
 
 When step is given (as the third parameter), it specifies the increment (or
 decrement):
@@ -20,7 +20,7 @@ decrement):
         {{ i }},
     {% endfor %}
 
-    {# returns 0, 2, 4, 6 #}
+    {# outputs 0, 2, 4, 6, #}
 
 The Twig built-in ``..`` operator is just syntactic sugar for the ``range``
 function (with a step of 1):
index c2c6adb..defa5fb 100644 (file)
@@ -2,7 +2,7 @@
 ==========
 
 .. versionadded:: 1.15
-    The include function was added in Twig 1.15.
+    The source function was added in Twig 1.15.
 
 The ``source`` function returns the content of a template without rendering it:
 
index eeb63c6..a8ef6f7 100644 (file)
@@ -9,7 +9,7 @@ Installing the Twig PHP package
 Installing via Composer (recommended)
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
-1. Install composer in your project:
+1. Install Composer in your project:
 
 .. code-block:: bash
 
@@ -25,7 +25,7 @@ Installing via Composer (recommended)
         }
     }
 
-3. Install via composer
+3. Install via Composer
 
 .. code-block:: bash
 
index dfcc920..bfdfc0d 100644 (file)
@@ -335,7 +335,7 @@ you have some dynamic JavaScript files thanks to the ``autoescape`` tag:
 
 But if you have many HTML and JS files, and if your template names follow some
 conventions, you can instead determine the default escaping strategy to use
-based on the template name. Let's say that your template names always ends
+based on the template name. Let's say that your template names always end
 with ``.html`` for HTML files, ``.js`` for JavaScript ones, and ``.css`` for
 stylesheets, here is how you can configure Twig::
 
index 085f916..e403632 100644 (file)
@@ -35,7 +35,7 @@ but without the associated complexity:
     {% block content %}{% endblock %}
 
 The ``use`` statement tells Twig to import the blocks defined in
-```blocks.html`` into the current template (it's like macros, but for blocks):
+``blocks.html`` into the current template (it's like macros, but for blocks):
 
 .. code-block:: jinja
 
index 4e9d6f8..6ed56d8 100644 (file)
@@ -10,5 +10,5 @@ another variable:
 .. code-block:: jinja
 
     {% if foo.attribute is same as(false) %}
-        the foo attribute really is the ``false`` PHP value
+        the foo attribute really is the 'false' PHP value
     {% endif %}