diff options
author | 0neGal <mail@0negal.com> | 2022-05-30 21:53:41 +0200 |
---|---|---|
committer | 0neGal <mail@0negal.com> | 2022-05-30 21:53:41 +0200 |
commit | 7ddfd200abad2de370d49f6a58862a71c148111d (patch) | |
tree | 39cdb07eaf4badc7f5391b55a55cfac6500e57b2 /src/app/lang.js | |
parent | 992f747c5cd93b4fd8c5e27c3bd24766c5875a5c (diff) | |
download | Viper-7ddfd200abad2de370d49f6a58862a71c148111d.tar.gz Viper-7ddfd200abad2de370d49f6a58862a71c148111d.zip |
fixed missing commas and various syntax stuff
I know, commas aren't needed, however, going in and out of using commas
and not using them also looks bad, so generally I try to always use
them, with exceptions.
Diffstat (limited to 'src/app/lang.js')
-rw-r--r-- | src/app/lang.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/lang.js b/src/app/lang.js index 6fdcd8d..f1c31d3 100644 --- a/src/app/lang.js +++ b/src/app/lang.js @@ -10,7 +10,7 @@ function setlang() { if (html[i][0] != " " && html[i][html[i].length - 1] != " ") { // Replaces it with it's string - html[i] = lang(html[i]) + html[i] = lang(html[i]); } } |