docs: correct webFrame description (#32205)

The current description incorrectly states that the webFrame export represents the top frame but it actually represents the current frame.
This commit is contained in:
Maciej Krawczyk 2022-01-04 02:12:55 +01:00 коммит произвёл GitHub
Родитель 4600d7e7f6
Коммит 84f1d78558
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -5,8 +5,8 @@
Process: [Renderer](../glossary.md#renderer-process)
`webFrame` export of the Electron module is an instance of the `WebFrame`
class representing the top frame of the current `BrowserWindow`. Sub-frames can
be retrieved by certain properties and methods (e.g. `webFrame.firstChild`).
class representing the current frame. Sub-frames can be retrieved by
certain properties and methods (e.g. `webFrame.firstChild`).
An example of zooming current page to 200%.