Fix disordered definitions in webContents doc
authorvsemozhetbyt <vsemozhetbyt@gmail.com>
Wed, 6 Jul 2016 15:58:50 +0000 (18:58 +0300)
committerGitHub <noreply@github.com>
Wed, 6 Jul 2016 15:58:50 +0000 (18:58 +0300)
:memo: Swap `clearSelection` and `keepSelection` definitions
for `webContents.stopFindInPage(action)` that seems to be in wrong order.

[ci skip]

docs/api/web-contents.md

index c3d175125b846b268d9184d7a8af7a15512876f2..e33d3d0caccfe79840059912dd591c23c5be95cc 100644 (file)
@@ -649,8 +649,8 @@ the request can be obtained by subscribing to
 
 * `action` String - Specifies the action to take place when ending
   [`webContents.findInPage`](web-contents.md#webcontentfindinpage) request.
-  * `clearSelection` - Translate the selection into a normal selection.
-  * `keepSelection` - Clear the selection.
+  * `clearSelection` - Clear the selection.
+  * `keepSelection` - Translate the selection into a normal selection.
   * `activateSelection` - Focus and click the selection node.
 
 Stops any `findInPage` request for the `webContents` with the provided `action`.