-
Notifications
You must be signed in to change notification settings - Fork 22.8k
Remove redundant 1
after var names like var1
where no var2
exists
#40180
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
Conversation
files/en-us/web/javascript/reference/global_objects/array/sort/index.md
Outdated
Show resolved
Hide resolved
files/en-us/web/javascript/reference/global_objects/array/sort/index.md
Outdated
Show resolved
Hide resolved
files/en-us/web/javascript/reference/global_objects/array/sort/index.md
Outdated
Show resolved
Hide resolved
files/en-us/web/javascript/reference/global_objects/object/defineproperties/index.md
Outdated
Show resolved
Hide resolved
files/en-us/web/javascript/reference/global_objects/object/defineproperties/index.md
Outdated
Show resolved
Hide resolved
files/en-us/web/javascript/reference/global_objects/object/defineproperty/index.md
Outdated
Show resolved
Hide resolved
files/en-us/web/javascript/reference/global_objects/object/defineproperty/index.md
Outdated
Show resolved
Hide resolved
files/en-us/web/javascript/reference/global_objects/regexp/exec/index.md
Outdated
Show resolved
Hide resolved
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Thanks, it will take me a while to get to it (mainly because I need to check if the variables are referenced elsewhere), but I will eventually... |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks awesome, thank you so much! I really appreciate your attention to detail and fixing everything en masse. Thanks for all the time you put into this.
Description
Fixes #40178.
It's quite a big line diff, but the vast majority of the changes with
git diff --word-diff-regex="."
are just... varName[-1-] ...
.Motivation
It's confusing as you're looking around for a contrastive
var2
variable or something else that would indicate the importance of the number1
, but there often isn't anything.Additional details
N/A
Related issues and pull requests
Fixes #40178