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
Recommendation: The PR’s direct edits are the right immediate fix for two isolated typos. If typos are recurring, consider adding a lightweight docs spellcheck step in CI with an allowlist for Selenium-specific terminology.
Files changed (1) +2 / -2
Documentation (1) +2 / -2
history.en.mdFix two spelling errors in history page headings/body text+2/-2
Fix two spelling errors in history page headings/body text
• Corrects the heading "executeables" to "executables" and changes "implementor" to "implementer" in a paragraph about specification work. No content meaning or formatting is otherwise altered.
Changing the H3 heading text changes the generated HTML fragment ID for that section (e.g., the old
typo-based #...executeables anchor will no longer exist), which can break existing deep
links/bookmarks to this heading.
The PR changes a markdown heading; Hugo generates heading IDs/anchors from heading text when plain
ID anchors are enabled, so the fragment for this section changes along with the heading text.
The issue below was found during a code review. Follow the provided context and guidance below and implement a solution
### Issue description
The heading text change will change the section’s generated fragment identifier, potentially breaking existing inbound links/bookmarks that use the old (typo) fragment.
### Issue Context
This site is Hugo-based and is configured to generate plain heading ID anchors. To avoid breaking deep links, keep the corrected visible heading but add an explicit legacy anchor matching the previous generated ID.
### Fix Focus Areas
- website_and_docs/content/documentation/about/history.en.md[98-102]
### Suggested fix
Add an explicit legacy anchor immediately before the heading, e.g.:
```md
<a id="a-story-of-driver-executeables"></a>
### A story of driver executables
```
(Use the exact legacy fragment ID you want to preserve.)
ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools
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
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.
Description
Correct two typos in the English history documentation:
executeables->executablesimplementor->implementerMotivation and Context
This improves the readability and spelling accuracy of the Selenium history documentation without changing its meaning.
Types of changes
Checklist