diff --git a/docs/api/index.md b/docs/api/index.md index 735ce4e6776..a2f5d480ae1 100644 --- a/docs/api/index.md +++ b/docs/api/index.md @@ -15,7 +15,7 @@ sidebar_label: API | [CDPSession](./puppeteer.cdpsession.md) | The CDPSession instances are used to talk raw Chrome Devtools Protocol. | | [Connection](./puppeteer.connection.md) | | | [ConsoleMessage](./puppeteer.consolemessage.md) | ConsoleMessage objects are dispatched by page via the 'console' event. | -| [Coverage](./puppeteer.coverage.md) | The Coverage class provides methods to gathers information about parts of JavaScript and CSS that were used by the page. | +| [Coverage](./puppeteer.coverage.md) | The Coverage class provides methods to gather information about parts of JavaScript and CSS that were used by the page. | | [CSSCoverage](./puppeteer.csscoverage.md) | | | [CustomError](./puppeteer.customerror.md) | | | [DeviceRequestPrompt](./puppeteer.devicerequestprompt.md) | Device request prompts let you respond to the page requesting for a device through an API like WebBluetooth. | diff --git a/docs/api/puppeteer.coverage.md b/docs/api/puppeteer.coverage.md index dfd32f6043c..7dd807a8865 100644 --- a/docs/api/puppeteer.coverage.md +++ b/docs/api/puppeteer.coverage.md @@ -4,7 +4,7 @@ sidebar_label: Coverage # Coverage class -The Coverage class provides methods to gathers information about parts of JavaScript and CSS that were used by the page. +The Coverage class provides methods to gather information about parts of JavaScript and CSS that were used by the page. #### Signature: diff --git a/docs/api/puppeteer.page.md b/docs/api/puppeteer.page.md index 05c622b3866..85b86220414 100644 --- a/docs/api/puppeteer.page.md +++ b/docs/api/puppeteer.page.md @@ -66,7 +66,7 @@ page.off('request', logRequest); | Property | Modifiers | Type | Description | | ------------- | --------------------- | --------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | accessibility | readonly | [Accessibility](./puppeteer.accessibility.md) | The Accessibility class provides methods for inspecting Chromium's accessibility tree. The accessibility tree is used by assistive technology such as [screen readers](https://en.wikipedia.org/wiki/Screen_reader) or [switches](https://en.wikipedia.org/wiki/Switch_access). | -| coverage | readonly | [Coverage](./puppeteer.coverage.md) | The Coverage class provides methods to gathers information about parts of JavaScript and CSS that were used by the page. | +| coverage | readonly | [Coverage](./puppeteer.coverage.md) | The Coverage class provides methods to gather information about parts of JavaScript and CSS that were used by the page. | | keyboard | readonly | [Keyboard](./puppeteer.keyboard.md) | Keyboard provides an api for managing a virtual keyboard. The high level api is [Keyboard.type()](./puppeteer.keyboard.type.md), which takes raw characters and generates proper keydown, keypress/input, and keyup events on your page. | | mouse | readonly | [Mouse](./puppeteer.mouse.md) | The Mouse class operates in main-frame CSS pixels relative to the top-left corner of the viewport. | | touchscreen | readonly | [Touchscreen](./puppeteer.touchscreen.md) | The Touchscreen class exposes touchscreen events. | diff --git a/packages/puppeteer-core/src/common/Coverage.ts b/packages/puppeteer-core/src/common/Coverage.ts index 27103f90166..b19d79e95e0 100644 --- a/packages/puppeteer-core/src/common/Coverage.ts +++ b/packages/puppeteer-core/src/common/Coverage.ts @@ -95,7 +95,7 @@ export interface CSSCoverageOptions { } /** - * The Coverage class provides methods to gathers information about parts of + * The Coverage class provides methods to gather information about parts of * JavaScript and CSS that were used by the page. * * @remarks