Skip to content

Commit d150e1e

Browse files
authored
Merge pull request SciSharp#1211 from maximevtush/master
Fix Typos in jQuery Validation Library
2 parents 3cc3f0c + 99a3f94 commit d150e1e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

LLama.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,7 @@ $.extend( $.validator, {
757757
normalizer = this.settings.normalizer;
758758
}
759759

760-
// If normalizer is defined, then call it to retreive the changed value instead
760+
// If normalizer is defined, then call it to retrieve the changed value instead
761761
// of using the real one.
762762
// Note that `this` in the normalizer is `element`.
763763
if ( normalizer ) {
@@ -1182,7 +1182,7 @@ $.extend( $.validator, {
11821182

11831183
normalizeAttributeRule: function( rules, type, method, value ) {
11841184

1185-
// Convert the value to a number for number inputs, and for text for backwards compability
1185+
// Convert the value to a number for number inputs, and for text for backwards compatibility
11861186
// allows type="date" and others to be compared as strings
11871187
if ( /min|max|step/.test( method ) && ( type === null || /number|range|text/.test( type ) ) ) {
11881188
value = Number( value );
@@ -1598,4 +1598,4 @@ if ( $.ajaxPrefilter ) {
15981598
};
15991599
}
16001600
return $;
1601-
}));
1601+
}));

0 commit comments

Comments
 (0)