Skip to content

Commit

Permalink
restored missing semicolon
Browse files Browse the repository at this point in the history
I accidentally deleted the semicolon in the last commit :P
  • Loading branch information
kentaromiura committed Oct 27, 2012
1 parent c8bbe59 commit e25c9ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Types/String.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ provides: String
String.implement({

contains: function(string, index){
return (index ? String(this).slice(index) : String(this)).indexOf(string) > -1
return (index ? String(this).slice(index) : String(this)).indexOf(string) > -1;
},

test: function(regex, params){
Expand Down

0 comments on commit e25c9ff

Please sign in to comment.