📝 Add missing semicolons

[ci skip]
This commit is contained in:
Plusb Preco 2016-05-11 01:57:55 +09:00
parent 6e0112bf9f
commit 139a4f984a
12 changed files with 32 additions and 32 deletions

View file

@ -93,6 +93,6 @@ this event it might look something like this:
```javascript
Alarm.on('wake-up', (time) => {
console.log(time)
})
console.log(time);
});
```