-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Correct a typo (*doesnot*) #2487
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: trunk
Are you sure you want to change the base?
Conversation
``` grep -rw doesnot ``` <details> <summary>Output:</summary> ``` website_and_docs/content/documentation/grid/configuration/cli_options.zh-cn.md:| `--enable-cdp`| boolean | `true` | Enable CDP proxying in Grid. A Grid admin can disable CDP if the network doesnot allow websockets. True by default. | website_and_docs/content/documentation/grid/configuration/cli_options.pt-br.md:| `--enable-cdp`| boolean | `true` | Enable CDP proxying in Grid. A Grid admin can disable CDP if the network doesnot allow websockets. True by default. | website_and_docs/content/documentation/grid/configuration/cli_options.en.md:| `--enable-cdp`| boolean | `true` | Enable CDP proxying in Grid. A Grid admin can disable CDP if the network doesnot allow websockets. True by default. | ``` </details> ```bash find -type f | xargs sed -i 's/doesnot/does not/g' ``` solves the issue.
👷 Deploy request for selenium-dev pending review.Visit the deploys page to approve it
|
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
User description
Output:
solves the issue.
Thanks for contributing to the Selenium site and documentation!
A PR well described will help maintainers to review and merge it quickly
Before submitting your PR, please check our contributing guidelines.
Avoid large PRs, and help reviewers by making them as simple and short as possible.
Description
Motivation and Context
Types of changes
Checklist
PR Type
Documentation
Description
Fix typo "doesnot" to "does not" in documentation
Update CLI options documentation across multiple languages
File Walkthrough
cli_options.en.md
Fix typo in English CLI options
website_and_docs/content/documentation/grid/configuration/cli_options.en.md
--enable-cdp
option descriptioncli_options.pt-br.md
Fix typo in Portuguese CLI options
website_and_docs/content/documentation/grid/configuration/cli_options.pt-br.md
--enable-cdp
option descriptioncli_options.zh-cn.md
Fix typo in Chinese CLI options
website_and_docs/content/documentation/grid/configuration/cli_options.zh-cn.md
--enable-cdp
option description