From 527c9cd28ef102b909cb1ec5570be33ffc796c0e Mon Sep 17 00:00:00 2001 From: Nextheory Labs <44335293+nextheory-labs@users.noreply.github.com> Date: Tue, 12 Feb 2019 04:59:44 +0530 Subject: [PATCH] fixed typos (#32748) * fixed typos * Update index.md --- guide/english/electron/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/electron/index.md b/guide/english/electron/index.md index 6753cb65c4..4bb7380a27 100644 --- a/guide/english/electron/index.md +++ b/guide/english/electron/index.md @@ -18,7 +18,7 @@ Additionally, Electron comes with support for auto-updating, crash reporting, an Core features can be explored using the [Electron API demos](https://github.com/electron/electron-api-demos). ### Advantages of Electron -Electron applications are similar to any other desktop applications as they are installed locally on users hard drive. They can be launched directly from the OSX Dock or Windows taskbar, and there is no need to launch a browser and navigate to some url to run your application. When you need to open or save a file, the dialogs are native in appearance and interaction. Electron application can support full drag-and-drop interaction with a local file system, or even associate itself with a file type, so when a user double-clicks the associated file, our app will open. +Electron applications are similar to any other desktop applications as they are installed locally on a user's hard drive. They can be launched directly from the OSX Dock or Windows taskbar, and there is no need to launch a browser and navigate to some url to run your application. When you need to open or save a file, the dialogs are native in appearance and interaction. Electron application can support full drag-and-drop interaction with a local file system, or even associate itself with a file type, so when a user double-clicks the associated file, our app will open. Electron also gives us the ability to have custom application menus that conform to each platform’s user interface guidelines. Contextual menus are available that allow user to control-click or right-click to display custom menu. If we need to trigger a system-wide notification, we can leverage Chromium’s Notification API to do so. Electron will go even further than traditional window desktop applications, and create applications that only live in the menubar or system tray. In short Electron provides a solid framework that will allow you to develop first-class desktop applications.