diff options
| author | Gokulakrishna <gokulakrishna@rocketmail.com> | 2018-05-16 13:26:13 +0530 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-05-16 13:26:13 +0530 | 
| commit | 346ee12396cc7a9ace7edeba39a4c46dfc060617 (patch) | |
| tree | 37ae7f70d541b20a5ce2b7b2df5c576932773b3a | |
| parent | e6b1d38fc3711bb0a0fa48e0d5ffea67e2b826b8 (diff) | |
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;  | 
