Skip to content

Commit

Permalink
link to event emitter
Browse files Browse the repository at this point in the history
  • Loading branch information
jackfranklin committed Jun 12, 2020
1 parent c50cffc commit 410412b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion new-docs/puppeteer.page.md
Expand Up @@ -32,7 +32,7 @@ const puppeteer = require('puppeteer');
})();

```
The Page class emits various events which are documented in the [PageEmittedEvents](./puppeteer.pageemittedevents.md) enum.
The Page class extends from Puppeteer's [EventEmitter](./puppeteer.eventemitter.md) class and will emit various events which are documented in the [PageEmittedEvents](./puppeteer.pageemittedevents.md) enum.
## Example 2
Expand Down
2 changes: 1 addition & 1 deletion src/Page.ts
Expand Up @@ -183,7 +183,7 @@ class ScreenshotTaskQueue {
* })();
* ```
*
* The Page class emits various events which are documented in the {@link PageEmittedEvents} enum.
* The Page class extends from Puppeteer's {@link EventEmitter } class and will emit various events which are documented in the {@link PageEmittedEvents} enum.
*
* @example
* This example logs a message for a single page `load` event:
Expand Down

0 comments on commit 410412b

Please sign in to comment.