-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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
doc typofix: fetaures -> features #3522
Conversation
Needs some minor commit message massage (suggested: |
@mLuby you probably want to update your author info as well (you edited through github, no?). |
@@ -178,7 +178,7 @@ DEFINE_BOOL(strong_this, true, "don't allow 'this' to escape from constructors") | |||
|
|||
DEFINE_BOOL(es_staging, false, "enable all completed harmony features") | |||
DEFINE_BOOL(harmony, false, "enable all completed harmony features") | |||
DEFINE_BOOL(harmony_shipping, true, "enable all shipped harmony fetaures") | |||
DEFINE_BOOL(harmony_shipping, true, "enable all shipped harmony features") |
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.
This comes from upstream. We may not be able to edit them directly like this, unless there is a compelling reason.
simple typo found in harmony mode documentation: fetaures should be features
Oh, didn't consider that. Upstream fix then. |
A search of the entire repo only found those two instances of the typo. Wonder where the upstream mistake is—some external source perhaps? |
@mLuby this'd be it: https://github.com/v8/v8/blob/b3c719ebbad6c87afefa33a7d0b3f412b2e304db/src/flag-definitions.h#L184 The procedure for sending patches to v8 is a bit of a hurdle. |
+1 for fixing this upstream in v8. The less floated patches the better. |
Submitted a patch https://codereview.chromium.org/1413023003/ |
Closing this PR, as the patch landed in upstream. @mLuby Thanks for trying to fix this :-) |
Thank you for actually fixing it!
|
Noticed it when using
node --v8-options | grep harmony
.