diff options
author | Alex Yatskov <alex@foosoft.net> | 2016-08-07 13:01:27 -0700 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2016-08-07 13:01:27 -0700 |
commit | 3c9f2c6a2e50617dbad4412f89fb37fb125bc3d0 (patch) | |
tree | e6bb3a4d303f8803f6fee33ba23b62ceb5d80669 /ext/bg/js/deinflector.js | |
parent | d3272efef7687d08d5c2a36b27328771db522f37 (diff) |
Cleanup
Diffstat (limited to 'ext/bg/js/deinflector.js')
-rw-r--r-- | ext/bg/js/deinflector.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/bg/js/deinflector.js b/ext/bg/js/deinflector.js index 194dbab6..bbb228b5 100644 --- a/ext/bg/js/deinflector.js +++ b/ext/bg/js/deinflector.js @@ -20,9 +20,9 @@ class Deinflection { constructor(term, tags=[], rule='') { this.children = []; - this.term = term; - this.tags = tags; - this.rule = rule; + this.term = term; + this.tags = tags; + this.rule = rule; } validate(validator) { |