From 04deaed54406246aab7910babd35bf3c7ef8579e Mon Sep 17 00:00:00 2001 From: Wouter J Date: Sun, 28 Jun 2015 16:17:58 +0200 Subject: [PATCH] Very small typo fix --- .../Twig/Resources/views/Form/bootstrap_3_layout.html.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_3_layout.html.twig b/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_3_layout.html.twig index f82979cd62..926872d200 100644 --- a/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_3_layout.html.twig +++ b/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_3_layout.html.twig @@ -156,7 +156,7 @@ {%- endblock radio_label %} {% block checkbox_radio_label %} - {# Do no display the label if widget is not defined in order to prevent double label rendering #} + {# Do not display the label if widget is not defined in order to prevent double label rendering #} {% if widget is defined %} {% if required %} {% set label_attr = label_attr|merge({class: (label_attr.class|default('') ~ ' required')|trim}) %}