From a3f30ca8227f63da8ad527c6a224c2bc83937329 Mon Sep 17 00:00:00 2001 From: Pier Bover Date: Fri, 25 Mar 2016 16:26:14 -0600 Subject: [PATCH 1/2] Update desktop-environment-integration.md --- docs/tutorial/desktop-environment-integration.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/tutorial/desktop-environment-integration.md b/docs/tutorial/desktop-environment-integration.md index c35eea944bec..53fdf606d491 100644 --- a/docs/tutorial/desktop-environment-integration.md +++ b/docs/tutorial/desktop-environment-integration.md @@ -15,6 +15,8 @@ to the user. Electron conveniently allows developers to send notifications with the [HTML5 Notification API](https://notifications.spec.whatwg.org/), using the currently running operating system's native notification APIs to display it. +Note: since this is an HTML5 API it is only avaialable in the renderer process. + ```javascript var myNotification = new Notification('Title', { body: 'Lorem Ipsum Dolor Sit Amet' From 116aa2f48330417c1e0adaef6188c950e849df2c Mon Sep 17 00:00:00 2001 From: Pier Bover Date: Mon, 28 Mar 2016 11:41:16 -0600 Subject: [PATCH 2/2] Update desktop-environment-integration.md --- docs/tutorial/desktop-environment-integration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/desktop-environment-integration.md b/docs/tutorial/desktop-environment-integration.md index 53fdf606d491..bd4839cd6b1b 100644 --- a/docs/tutorial/desktop-environment-integration.md +++ b/docs/tutorial/desktop-environment-integration.md @@ -15,7 +15,7 @@ to the user. Electron conveniently allows developers to send notifications with the [HTML5 Notification API](https://notifications.spec.whatwg.org/), using the currently running operating system's native notification APIs to display it. -Note: since this is an HTML5 API it is only avaialable in the renderer process. +Note: since this is an HTML5 API it is only available in the renderer process. ```javascript var myNotification = new Notification('Title', {