Fix typo in notifications example docs
authorEddie Zaneski <eddiezane@gmail.com>
Sun, 15 Nov 2015 15:48:09 +0000 (10:48 -0500)
committerEddie Zaneski <eddiezane@gmail.com>
Sun, 15 Nov 2015 15:48:09 +0000 (10:48 -0500)
docs/tutorial/desktop-environment-integration.md

index 7c4807d..6e570ee 100644 (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'
 });