From 75e8001249d0ce061d57fe81e433a4e6ec3d4ee5 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 a27f1ece7f6..ab6bd8b8606 100644 --- a/reference/forms/types/options/choice_label.rst.inc +++ b/reference/forms/types/options/choice_label.rst.inc @@ -49,7 +49,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',