Skip to content
This repository has been archived by the owner on Dec 19, 2024. It is now read-only.

Commit

Permalink
Merge pull request #7 from jklein24/master
Browse files Browse the repository at this point in the history
Fix a couple boolean type annotations
  • Loading branch information
jklein24 committed Jun 9, 2015
2 parents 6c51711 + 6a83560 commit e23a8ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions iron-validatable-behavior.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,15 @@
},

/**
* @return {Boolean} True if the validator `validator` exists.
* @return {boolean} True if the validator `validator` exists.
*/
hasValidator: function() {
return this._validator != null;
},

/**
* @param {Object} values Passed to the validator's `validate()` function.
* @return {Boolean} True if `values` is valid.
* @return {boolean} True if `values` is valid.
*/
validate: function(values) {
var valid = this._validator && this._validator.validate(values);
Expand Down

0 comments on commit e23a8ad

Please sign in to comment.