You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I have used hugo to render the site/docs locally and I am sure it works.
PR Type
Documentation
Description
Fix curl command name from cURL to curl in documentation
Update command references across multiple language versions
Correct minor typo in English documentation
Changes diagram
flowchart LR
A["Documentation Files"] --> B["Fix cURL to curl"]
B --> C["Update Command Examples"]
B --> D["Fix Text References"]
C --> E["Multiple Languages Updated"]
✅ (削除) Fix curl command syntax (削除ここまで)Suggestion Impact:The suggestion was implemented with a slight variation - instead of using -X GET, the commit used --request GET, which is functionally equivalent and fixes the same syntax issue
code diff:
-curl GET 'http://localhost:4444/status'+curl --request GET 'http://localhost:4444/status'
The curl command syntax is incorrect. The HTTP method should be specified with the -X flag, not as a standalone argument. This will cause the command to fail when executed.
-curl GET 'http://localhost:4444/status'+curl -X GET 'http://localhost:4444/status'
[Suggestion processed]
Suggestion importance[1-10]: 7
__
Why: The suggestion correctly identifies that the curl command syntax is invalid; the GET method should be specified with the -X flag or omitted, as it's the default.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
User description
Description
This PR fixes the name of the
curlcommand used in: https://www.selenium.dev/documentation/grid/advanced_features/endpoints/Also:
Motivation and Context
curlis the proper name of the command.Also,
cURLprobably doesn't work on case-sensitive file systems.Types of changes
Checklist
PR Type
Documentation
Description
Fix curl command name from
cURLtocurlin documentationUpdate command references across multiple language versions
Correct minor typo in English documentation
Changes diagram
Changes walkthrough 📝
endpoints.en.md
Fix curl command name and typowebsite_and_docs/content/documentation/grid/advanced_features/endpoints.en.md
cURLtocurlin command examplesendpoints.ja.md
Fix curl command name in Japanesewebsite_and_docs/content/documentation/grid/advanced_features/endpoints.ja.md
cURLtocurlin command examplesendpoints.pt-br.md
Fix curl command name in Portuguesewebsite_and_docs/content/documentation/grid/advanced_features/endpoints.pt-br.md
cURLtocurlin command examplescurl"
endpoints.zh-cn.md
Fix curl command name in Chinesewebsite_and_docs/content/documentation/grid/advanced_features/endpoints.zh-cn.md
cURLtocurlin command examples