Merge pull request #3450 from eddiezane/patch-1

Fix typo in notifications example docs
This commit is contained in:
Cheng Zhao 2015-11-16 11:17:41 +08:00
commit abba83397b

View file

@ -16,7 +16,7 @@ the [HTML5 Notification API](https://notifications.spec.whatwg.org/), using
the currently running operating system's native notification APIs to display it.
```javascript
var myNotificiation = new Notification('Title', {
var myNotification = new Notification('Title', {
body: 'Lorem Ipsum Dolor Sit Amet'
});