The stricter the better

This commit is contained in:
Alexander Makarov
2015-07-08 16:14:16 +03:00
parent 1a7d9ac809
commit 4f6f041e8b

View File

@ -165,7 +165,7 @@ class Validator extends Component
*
* ```php
* function (attribute, value) {
* return $('#country').val() == 'USA';
* return $('#country').val() === 'USA';
* }
* ```
*