From c845048784d62352f98ed83013300339194b61cb Mon Sep 17 00:00:00 2001 From: Erison Silva Date: Sat, 15 Oct 2022 12:45:39 +0200 Subject: [PATCH] Update choice_translation_parameters.rst.inc Adding missing ";" for the `choice_translation_parameters` example --- .../forms/types/options/choice_translation_parameters.rst.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/forms/types/options/choice_translation_parameters.rst.inc b/reference/forms/types/options/choice_translation_parameters.rst.inc index a384d38d487..c1bad6dc336 100644 --- a/reference/forms/types/options/choice_translation_parameters.rst.inc +++ b/reference/forms/types/options/choice_translation_parameters.rst.inc @@ -59,7 +59,7 @@ You can specify the placeholder values as follows:: return []; } - return ['%company%' => 'ACME Inc.'] + return ['%company%' => 'ACME Inc.']; }, ]);