Browse Source

Fix routingId type

Previous phrasing confused electron-typescript-definitions,
thinking that routingId was of type `unique` :smiley:
Charles Kerr 7 years ago
parent
commit
13877ce2c8
1 changed files with 7 additions and 6 deletions
  1. 7 6
      docs/api/web-frame.md

+ 7 - 6
docs/api/web-frame.md

@@ -237,10 +237,10 @@ renderer process.
 
 ### `webFrame.findFrameByRoutingId(routingId)`
 
-* `routingId` Integer - A unique frame id in the current renderer process.
-  Routing IDs can be retrieved from `WebFrame` instances (`webFrame.routingId`)
-  and are also passed by frame specific `WebContents` navigation events (e.g. 
-  `did-frame-navigate`)
+* `routingId` Integer - An `Integer` representing the unique frame id in the
+   current renderer process. Routing IDs can be retrieved from `WebFrame`
+   instances (`webFrame.routingId`) and are also passed by frame
+   specific `WebContents` navigation events (e.g. `did-frame-navigate`)
   
 Returns `WebFrame` - that has the supplied `routingId`, `null` if not found. 
 
@@ -276,5 +276,6 @@ current renderer process.
 
 ### `webFrame.routingId`
 
-A unique frame id in the current renderer process. Distinct WebFrame instances
-that refer to the same underlying frame will have the same `routingId`.
+An `Integer` representing the unique frame id in the current renderer process.
+Distinct WebFrame instances that refer to the same underlying frame will have
+the same `routingId`.