Skip to content

Commit 8f4c292

Browse files
javiereguiluzweaverryan
authored andcommitted
Added a missing trailing comma
1 parent b38ed60 commit 8f4c292

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/validator/introduction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ characters long::
3636
$validator = Validation::createValidator();
3737
$violations = $validator->validate('Bernhard', array(
3838
new Length(array('min' => 10)),
39-
new NotBlank()
39+
new NotBlank(),
4040
));
4141

4242
if (0 !== count($violations)) {

0 commit comments

Comments
 (0)