From 351910bf21f06c11ceab6d9bac6e989d658c2b51 Mon Sep 17 00:00:00 2001 From: Robert Gruendler Date: Mon, 18 Jul 2011 14:35:57 +0200 Subject: [PATCH] added twig comments --- lib/Twig/Extension/Core.php | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Twig/Extension/Core.php b/lib/Twig/Extension/Core.php index 3771f48..6e1f9b2 100644 --- a/lib/Twig/Extension/Core.php +++ b/lib/Twig/Extension/Core.php @@ -329,7 +329,7 @@ function twig_default_filter($value, $default = '') * *
  * {% for key in array|keys %}
- *      ...
+ *      {# ... #}
  *  {% endfor %}
  * 
* @@ -729,7 +729,7 @@ function twig_test_constant($value, $constant) *
 * {# defined works with variable names #}
 * {% if foo is defined %}
-*     ...
+*     {# ... #}
 * {% endif %}
 * 
* @@ -747,7 +747,7 @@ function twig_test_defined($name, $context) *
 * {# evaluates to true if the foo variable is null, false, or the empty string #}
 * {% if foo is empty %}
-*     ...
+*     {# ... #}
 * {% endif %}
 * 
* -- 1.7.2.5