From 7f25299e95e531d09d228faf282a007968f8d140 Mon Sep 17 00:00:00 2001 From: Frederik Schubert Date: Wed, 6 Jan 2016 13:05:53 +0100 Subject: [PATCH] Fixed a typo in the choice_label code example --- reference/forms/types/options/choice_label.rst.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/forms/types/options/choice_label.rst.inc b/reference/forms/types/options/choice_label.rst.inc index d2ebb176906..7223ba90469 100644 --- a/reference/forms/types/options/choice_label.rst.inc +++ b/reference/forms/types/options/choice_label.rst.inc @@ -43,7 +43,7 @@ If your choice values are objects, then ``choice_label`` can also be a 'choices' => array( new Status(Status::YES), new Status(Status::NO), - new Status::(Status::MAYBE), + new Status(Status::MAYBE), ), 'choices_as_values' => true, 'choice_label' => 'displayName',