From 93604a4ea73bae9dd867cf8dfaa86b5d8052faf7 Mon Sep 17 00:00:00 2001 From: Coby Tamayo Date: Fri, 24 May 2019 23:47:43 -0700 Subject: [PATCH] another typo --- docs/forms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/forms.md b/docs/forms.md index b9e74a5..afaa7a4 100644 --- a/docs/forms.md +++ b/docs/forms.md @@ -73,7 +73,7 @@ Displaying validation errors and submitted values is just as simple: ```twig -{% if myform.has_errors %} +{% if myForm.has_errors %}

Danger, Will Robinson! Your form has the following errors: {{ myForm.get_unique_error_messages|join(', ') }}

{% elseif myForm.succeeded %}

Success, thanks for the info!