Skip to content

Commit 7544f87

Browse files
committed
Fixed a few typos in code comments.
1 parent 7c0b451 commit 7544f87

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

VerbalExpressions.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,10 @@ window.VerbalExpression = (function(){
9292
return( this );
9393
},
9494

95-
// We try to keep the syntax ass
95+
// We try to keep the syntax as
9696
// user-friendly as possible.
9797
// So we can use the "normal"
98-
// behaviour to split the "scentences"
98+
// behaviour to split the "sentences"
9999
// naturally.
100100
then : function( value ) {
101101
value = this.sanitize( value );
@@ -118,7 +118,7 @@ window.VerbalExpression = (function(){
118118
return( this );
119119
},
120120

121-
// Any character any times
121+
// Any character any number of times
122122
anything : function() {
123123
this.add( "(.*)" );
124124
return( this );

0 commit comments

Comments
 (0)