Skip to content

Commit aa0c6f9

Browse files
committed
minor #9876 Fix typo for variable name (ipf)
This PR was submitted for the 4.1 branch but it was merged into the 3.4 branch instead (closes #9876). Discussion ---------- Fix typo for variable name The variable name `choice_value` did not contain the `$`. Commits ------- 823970b Fix typo for variable name
2 parents 25ccb33 + 823970b commit aa0c6f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reference/forms/types/options/choice_label.rst.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ more control::
1717
'maybe' => null,
1818
),
1919
'choice_label' => function ($choiceValue, $key, $value) {
20-
if ($value == choiceValue) {
20+
if ($value == $choiceValue) {
2121
return 'Definitely!';
2222
}
2323

0 commit comments

Comments
 (0)