-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Editorial: fix linking and change spelling of iterator interfaces #3459
Conversation
9bcc6fe
to
aedc649
Compare
@@ -4041,7 +4041,7 @@ <h1>Well-Known Intrinsic Objects</h1> | |||
<td> | |||
</td> | |||
<td> | |||
The prototype of wrapped Iterator objects returned by Iterator.from (<emu-xref href="#sec-%wrapforvaliditeratorprototype%-object"></emu-xref>) | |||
The prototype of wrapped iterator objects returned by Iterator.from (<emu-xref href="#sec-%wrapforvaliditeratorprototype%-object"></emu-xref>) |
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 use could remain capitalized as well, since the returned values do in fact inherit from Iterator
.
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.
Elsewhere we use "Iterator instance objects" to refer to iterators in a way that also requires that they inherit from Iterator
.
This also fixes #3426 |
6c13427
to
533b0ea
Compare
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.
Nice, thanks!
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.
There are two remaining (non-<h1>
) occurrences of "Iterator Objects" that you presumably want to change to "Iterator objects":
has properties that are inherited by all For-In Iterator Objects.
has properties that are inherited by all Async-from-Sync Iterator Objects.
17ee72e
to
e301f73
Compare
It looks like PR tc39#3459 missed these changes to capitalization and use of "<em>".
Fixes #3455. This adds a bunch of
<dfn>
s and the auto-linking is sooo much better. Also makes a lot of progress getting rid of the remaining<i>
s that are used as pseudo-<dfn>
s.edit: Actually, this eliminates all of the remaining
<i>
s! Nice!