minor #18228 [Validator] use correct term for a property in docblock (not "option") (sustmi)

This PR was merged into the 2.3 branch.

Discussion
----------

[Validator] use correct term for a property in docblock (not "option")

| Q             | A
| ------------- | ---
| Branch?       | 2.3
| Bug fix?      | no
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | https://github.com/symfony/symfony/issues/18218
| License       | MIT
| Doc PR        | -

Commits
-------

e38d954 [Validator] use correct term for a property in docblock (not "option")
This commit is contained in:
Tobias Schultze 2016-03-19 06:04:37 +01:00
commit 2710a88363
1 changed files with 2 additions and 2 deletions

View File

@ -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.
*