@@ -237,7 +237,7 @@ suite('Error Helpers', function() {
237
237
238
238
suite ( 'validateParameters: argument tree' , function ( ) {
239
239
// should not throw a validation error for the same kind of wrong args
240
- // more than once. This prevents repetetive validation logs for a
240
+ // more than once. This prevents repetitive validation logs for a
241
241
// function that is called in a loop or draw()
242
242
testUnMinified (
243
243
'no repeated validation error for the same wrong arguments' ,
@@ -440,7 +440,7 @@ suite('Error Helpers', function() {
440
440
}
441
441
) ;
442
442
443
- testUnMinified ( 'detects spelling + captialization mistakes' , function ( ) {
443
+ testUnMinified ( 'detects spelling + capitalization mistakes' , function ( ) {
444
444
const logMsg = help ( new ReferenceError ( 'RandomGossian is not defined' ) ) ;
445
445
assert . match (
446
446
logMsg ,
@@ -566,7 +566,7 @@ suite('Global Error Handling', function() {
566
566
return iframe ;
567
567
} ;
568
568
569
- testUnMinified ( 'identifies errors happenning internally' , function ( ) {
569
+ testUnMinified ( 'identifies errors happening internally' , function ( ) {
570
570
return new Promise ( function ( resolve ) {
571
571
// quite an unusual way to test, but the error listener doesn't work
572
572
// under mocha. Also the stacktrace gets filled with mocha internal
@@ -590,7 +590,7 @@ suite('Global Error Handling', function() {
590
590
} ) ;
591
591
592
592
testUnMinified (
593
- 'identifies errors happenning internally in ES6 classes' ,
593
+ 'identifies errors happening internally in ES6 classes' ,
594
594
function ( ) {
595
595
return new Promise ( function ( resolve ) {
596
596
prepSyntaxTest (
0 commit comments