Fix a typo in public.js (double semicolons) (#4269)

Signed-off-by: Cygnan <mail@cygnan.com>
lolsob-rspec
Cygnan 2017-07-19 20:35:22 +09:00 committed by Eugen Rochko
parent 8465019f54
commit 77c64924bc
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ function main() {
[].forEach.call(document.querySelectorAll('time.time-ago'), (content) => {
const datetime = new Date(content.getAttribute('datetime'));
content.textContent = relativeFormat.format(datetime);;
content.textContent = relativeFormat.format(datetime);
});
});