diff --git a/reference/forms/types/choice.rst b/reference/forms/types/choice.rst index 8eaf39d0153..6f98356f856 100644 --- a/reference/forms/types/choice.rst +++ b/reference/forms/types/choice.rst @@ -198,7 +198,7 @@ if you want to take advantage of lazy loading:: $builder->add('constants', ChoiceType::class, array( 'choice_loader' => new CallbackChoiceLoader(function() { return StaticClass::getConstants(); - }, + }), )); This will cause the call of ``StaticClass::getConstants()`` to not happen if the