Minor tweaks to flash frame section
authorKevin Sawicki <kevin@github.com>
Mon, 24 Oct 2016 01:19:51 +0000 (10:19 +0900)
committerGitHub <noreply@github.com>
Mon, 24 Oct 2016 01:19:51 +0000 (10:19 +0900)
docs/tutorial/desktop-environment-integration.md

index f4303e1de44245853424d6e165e76919582b94fe..cbe1021c58df34b057d4a5d3a5c924e5ba98d932 100644 (file)
@@ -308,9 +308,9 @@ win.setOverlayIcon('path/to/overlay.png', 'Description for overlay')
 
 ## Flash Frame (Windows)
 
-On Windows you can cause the taskbar button to become highlighted. This can be
-used similarly to macOS's Bounce Dock Icon to get the users attention. From the
-MSDN reference documentation:
+On Windows you can highlight the taskbar button to get the user's attention.
+This is similar to bouncing the dock icon on macOS.
+From the MSDN reference documentation:
 
 > Typically, a window is flashed to inform the user that the window requires
 > attention but that it does not currently have the keyboard focus.
@@ -325,9 +325,9 @@ win.once('focus', () => win.flashFrame(false))
 win.flashFrame(true)
 ```
 
-Don't forget to call the `flashFrame` method with false to turn off the flash. In
+Don't forget to call the `flashFrame` method with `false` to turn off the flash. In
 the above example, it is called when the window comes into focus, but you might
-use a timeout or some other event to trigger it off.
+use a timeout or some other event to disable it.
 
 ## Represented File of Window (macOS)