Skip to content

Commit 95bf4b3

Browse files
committed
text fix
1 parent fdf2e77 commit 95bf4b3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/cdp/cdp.zig

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -469,11 +469,12 @@ pub fn BrowserContext(comptime CDP_T: type) type {
469469
}
470470

471471
/// The current understanding. An isolated world lives in the same isolate, but a separated context.
472-
/// Clients creates this to be able to create variables and run code without interfering
473-
/// with the normal namespace and values of the webpage. Similar to the main context we need to pretend to recreate it after
472+
/// Clients create this to be able to create variables and run code without interfering with the
473+
/// normal namespace and values of the webpage. Similar to the main context we need to pretend to recreate it after
474474
/// a executionContextsCleared event which happens when navigating to a new page. A client can have a command be executed
475475
/// in the isolated world by using its Context ID or the worldName.
476-
/// grantUniveralAccess Indecated whether the isolated world has access to objects like the DOM or other JS Objects.
476+
/// grantUniveralAccess Indecated whether the isolated world can reference objects like the DOM or other JS Objects.
477+
/// An isolated world has it's own instance of globals like Window.
477478
/// Generally the client needs to resolve a node into the isolated world to be able to work with it.
478479
/// An object id is unique across all contexts, different object ids can refer to the same Node in different contexts.
479480
pub const IsolatedWorld = struct {

0 commit comments

Comments
 (0)