We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56f2d1e commit 945bf28Copy full SHA for 945bf28
test/ng/directive/inputSpec.js
@@ -724,7 +724,7 @@ describe('input', function() {
724
725
describe('minlength', function() {
726
727
- it('should invalid shorter than given minlenght', function() {
+ it('should invalid shorter than given minlength', function() {
728
compileInput('<input type="text" ng-model="value" ng-minlength="3" />');
729
730
changeInputValueTo('aa');
@@ -738,7 +738,7 @@ describe('input', function() {
738
739
describe('maxlength', function() {
740
741
- it('should invalid shorter than given maxlenght', function() {
+ it('should invalid shorter than given maxlength', function() {
742
compileInput('<input type="text" ng-model="value" ng-maxlength="5" />');
743
744
changeInputValueTo('aaaaaaaa');
0 commit comments