@@ -1066,7 +1066,7 @@ describe('jqLite', function() {
1066
1066
expect ( a . style . fooBar ) . toBe ( 'bar' ) ;
1067
1067
} ) ;
1068
1068
1069
- it ( 'should covert dash-separated strings to camelCase' , function ( ) {
1069
+ it ( 'should convert dash-separated strings to camelCase' , function ( ) {
1070
1070
var jqA = jqLite ( a ) ;
1071
1071
1072
1072
jqA . css ( 'foo-bar' , 'foo' ) ;
@@ -1078,7 +1078,7 @@ describe('jqLite', function() {
1078
1078
expect ( a . style [ 'foo:bar_baz' ] ) . toBe ( 'baz' ) ;
1079
1079
} ) ;
1080
1080
1081
- it ( 'should covert leading dashes followed by a lowercase letter' , function ( ) {
1081
+ it ( 'should convert leading dashes followed by a lowercase letter' , function ( ) {
1082
1082
var jqA = jqLite ( a ) ;
1083
1083
1084
1084
jqA . css ( '-foo-bar' , 'foo' ) ;
@@ -1097,7 +1097,7 @@ describe('jqLite', function() {
1097
1097
expect ( a . style [ 'foo-42- A-B' ] ) . toBe ( 'foo' ) ;
1098
1098
} ) ;
1099
1099
1100
- it ( 'should covert the -ms- prefix to ms instead of Ms' , function ( ) {
1100
+ it ( 'should convert the -ms- prefix to ms instead of Ms' , function ( ) {
1101
1101
var jqA = jqLite ( a ) ;
1102
1102
1103
1103
jqA . css ( '-ms-foo-bar' , 'foo' ) ;
@@ -2373,21 +2373,21 @@ describe('jqLite', function() {
2373
2373
expect ( kebabToCamel ( 'fooBar' ) ) . toBe ( 'fooBar' ) ;
2374
2374
} ) ;
2375
2375
2376
- it ( 'should covert dash-separated strings to camelCase' , function ( ) {
2376
+ it ( 'should convert dash-separated strings to camelCase' , function ( ) {
2377
2377
expect ( kebabToCamel ( 'foo-bar' ) ) . toBe ( 'fooBar' ) ;
2378
2378
expect ( kebabToCamel ( 'foo-bar-baz' ) ) . toBe ( 'fooBarBaz' ) ;
2379
2379
expect ( kebabToCamel ( 'foo:bar_baz' ) ) . toBe ( 'foo:bar_baz' ) ;
2380
2380
} ) ;
2381
2381
2382
- it ( 'should covert leading dashes followed by a lowercase letter' , function ( ) {
2382
+ it ( 'should convert leading dashes followed by a lowercase letter' , function ( ) {
2383
2383
expect ( kebabToCamel ( '-foo-bar' ) ) . toBe ( 'FooBar' ) ;
2384
2384
} ) ;
2385
2385
2386
- it ( 'should not convert slashes followed by a non-letter' , function ( ) {
2386
+ it ( 'should not convert dashes followed by a non-letter' , function ( ) {
2387
2387
expect ( kebabToCamel ( 'foo-42- -a-B' ) ) . toBe ( 'foo-42- A-B' ) ;
2388
2388
} ) ;
2389
2389
2390
- it ( 'should not covert browser specific css properties in a special way' , function ( ) {
2390
+ it ( 'should not convert browser specific css properties in a special way' , function ( ) {
2391
2391
expect ( kebabToCamel ( '-ms-foo-bar' ) ) . toBe ( 'MsFooBar' ) ;
2392
2392
expect ( kebabToCamel ( '-moz-foo-bar' ) ) . toBe ( 'MozFooBar' ) ;
2393
2393
expect ( kebabToCamel ( '-webkit-foo-bar' ) ) . toBe ( 'WebkitFooBar' ) ;
0 commit comments