From e38d954c590a6258e2774e5ec313667d1abfb965 Mon Sep 17 00:00:00 2001 From: Miroslav Sustek Date: Fri, 18 Mar 2016 21:39:03 +0100 Subject: [PATCH] [Validator] use correct term for a property in docblock (not "option") --- src/Symfony/Component/Validator/Constraint.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/Validator/Constraint.php b/src/Symfony/Component/Validator/Constraint.php index 8268cba1b1..5f5f1f7e80 100644 --- a/src/Symfony/Component/Validator/Constraint.php +++ b/src/Symfony/Component/Validator/Constraint.php @@ -18,9 +18,9 @@ use Symfony\Component\Validator\Exception\ConstraintDefinitionException; /** * Contains the properties of a constraint definition. * - * A constraint can be defined on a class, an option or a getter method. + * A constraint can be defined on a class, a property or a getter method. * The Constraint class encapsulates all the configuration required for - * validating this class, option or getter result successfully. + * validating this class, property or getter result successfully. * * Constraint instances are immutable and serializable. *