diff options
| author | Einar Egilsson <einar@einaregilsson.com> | 2018-05-16 08:53:00 +0000 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-05-16 08:53:00 +0000 | 
| commit | 1e3b1a4867a21b599e8e45296b788977ff7da31a (patch) | |
| tree | 37ae7f70d541b20a5ce2b7b2df5c576932773b3a | |
| parent | e6b1d38fc3711bb0a0fa48e0d5ffea67e2b826b8 (diff) | |
| parent | 346ee12396cc7a9ace7edeba39a4c46dfc060617 (diff) | |
Merge pull request #119 from gkrishnaks/master
Fixed a typo - replaced comma with semicolon
| -rw-r--r-- | js/redirect.js | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/js/redirect.js b/js/redirect.js index 4ede36a..83681fc 100644 --- a/js/redirect.js +++ b/js/redirect.js @@ -200,7 +200,7 @@ Redirect.prototype = {  	},  	_init : function(o) { -		this.description = o.description || '', +		this.description = o.description || '';  		this.exampleUrl = o.exampleUrl || '';  		this.exampleResult = o.exampleResult || '';  		this.error = o.error || null;  | 
