Skip to content

Commit

Permalink
docs: use "Node.js" instead of "Node" (#3176)
Browse files Browse the repository at this point in the history
* docs: use "Node.js" instead of "Node"

* docs: fix broken anchor
  • Loading branch information
bnb committed Jul 27, 2020
1 parent b217919 commit 51ce47f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ assignees: ''
**Context:**
- Playwright Version: [what Playwright version do you use?]
- Operating System: [e.g. Windows, Linux or Mac]
- Node version: [e.g. 10.12, 10.14]
- Node.js version: [e.g. 10.12, 10.14]
- Browser: [e.g. All, Chromium, Firefox, WebKit]
- Extra: [any specific details about your environment]

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

##### [Docs](docs/README.md) | [API reference](docs/api.md) | [Changelog](https://github.com/microsoft/playwright/releases)

Playwright is a Node library to automate [Chromium](https://www.chromium.org/Home), [Firefox](https://www.mozilla.org/en-US/firefox/new/) and [WebKit](https://webkit.org/) with a single API. Playwright is built to enable cross-browser web automation that is **ever-green**, **capable**, **reliable** and **fast**.
Playwright is a Node.js library to automate [Chromium](https://www.chromium.org/Home), [Firefox](https://www.mozilla.org/en-US/firefox/new/) and [WebKit](https://webkit.org/) with a single API. Playwright is built to enable cross-browser web automation that is **ever-green**, **capable**, **reliable** and **fast**.

| | Linux | macOS | Windows |
| :--- | :---: | :---: | :---: |
Expand Down
6 changes: 3 additions & 3 deletions docs/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
- [WebKit](#webkit)
* [WebKit headless doesn't launch on Linux/WSL](#webkit-headless-doesnt-launch-on-linuxwsl)
- [Code transpilation issues](#code-transpilation-issues)
- [Node requirements](#node-requirements)
- [Node.js requirements](#nodejs-requirements)
* [ReferenceError: URL is not defined](#referenceerror-url-is-not-defined)
<!-- GEN:stop -->

Expand Down Expand Up @@ -195,11 +195,11 @@ await page.evaluate(`(async() => {
})()`);
```

## Node requirements
## Node.js requirements

### ReferenceError: URL is not defined

Playwright requires Node 10 or higher. Node 8 is not supported, and will cause you to receive this error.
Playwright requires Node.js 10 or higher. Node.js 8 is not supported, and will cause you to receive this error.

# Please file an issue

Expand Down
2 changes: 1 addition & 1 deletion src/common/README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Files in this folder are used both in Node and injected environments, they can't have dependencies.
Files in this folder are used both in Node.js and injected environments, they can't have dependencies.

0 comments on commit 51ce47f

Please sign in to comment.