-
Notifications
You must be signed in to change notification settings - Fork 29.7k
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: clarify out-of-bounds behavior of buf[index] #11286
Conversation
doc/api/buffer.md
Outdated
Since this operator is inherited from `Uint8Array`, its behavior on | ||
out-of-bounds access is exactly the same - i.e. getting returns `undefined`, | ||
setting does nothing. | ||
|
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.
If I may suggest rewording a bit:
The value `undefined` will be returned when `index` is less than `0` or
greater than `buf.length`.
I'm not sure there's much value is calling out the inheritance from Uint8Array
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.
That seems more wordy than necessary, and I'd have to repeat the same thing about setting. Also it would have to be "greater or equal".
I'm not sure there's much value is calling out the inheritance from Uint8Array
There are finer nuances in its behavior, for example how indexed access on a Buffer always ignores the prototype chain. Referencing Uint8Array
means people know where to read about them if they're interested.
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.
-
Don't use
i.e.
Too many people think it means "for example". (It means "that is" or "in other words".) Just spell out "for example" if that's what you mean or "in other words" if that's what you mean. -
Don't use a
-
for a long stop. Just use a period and capitalize the next sentence.
Removing a few other unnecessary words yields something like this:
This operator is inherited from `Uint8Array`. Its behavior on out-of-bounds access is the
same as `UInt8Array`. For example, getting returns `undefined` and setting does nothing.
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.
Nikolai uses i.e.
correctly here as far as I can tell: "id est", not "exempli gratia."
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.
Nikolai uses i.e. correctly here as far as I can tell: "id est", not "exempli gratia."
Good to know, but the fact that I couldn't tell kind of proves my point, I think.
I'm concerned about the reader either thinking i.e.
means "for example" or else knowing better but not being certain that the author does. That second one is my experience pretty much every time I see i.e.
on the web, especially in open source documentation. I have to stop and figure out if the author really meant i.e.
or if they meant "for example". And sometimes it's hard to tell. Here's an example from our own docs (addons.md
):
Because the exact path to the compiled Addon binary can vary depending on how
it is compiled (i.e. sometimes it may be in./build/Debug/
), Addons can use
the [bindings][] package to load the compiled module.
Reading that, I'm not sure if ./build/Debug/
is the only alternative to the implied canonical ./build/Release/
or if it's possible that there are other locations too. Even if i.e.
is being used correctly in this case, it results in confusion and ambiguity (for me, at least) because I'm not sure that it's being used correctly.
For that reason, I always suggest eliminating i.e.
(and e.g.
) and just writing out what you mean to say. With i.e.
, a good replacement depends on context. It may be nothing at all (just remove i.e.
) or "that is" or "that is to say" or "in other words" or even something like "therefore".
That said, I'm OK with i.e.
if people think it's the better option. I prefer we don't use it, and I've explained above, but reasonable people can certainly have a different opinion than mine on this. :-D
@Trott I actually find this less clear than it was before, IMHO the
Are you saying that it shouldn't be used because lots of people won't understand it if they read it, or because you think using it here is wrong? If it's the first, I find
Why? It seems like a good way to split two related parts of the sentence. We seem to have a lot of rules about writing good docs, many of which seem quite prescriptive to me (although I'm no expert in writing documentation for an international audience). If we're going to ban things like My feeling is that on the whole we should avoid complex grammar (as that can be almost impossible to decipher for non-native speakers), but that vocabulary is generally not as much of a problem (it's usually a dictionary lookup). However it'd be good to hear from non-native English speakers. |
I'm not an expert in English grammar, but I don't think that second sentence is actually grammatically correct, can you start a sentence like that, with "That is, "? @crandmck is an expert in grammar, and tech writing, and deeply involved in Express.js docs, do you want to weigh in on this? I do think that if we are going to be very prescriptive on the doc wording, not just on technical accuracy (which we should be very picky about), but stylistic issues, it would be good to have some kind of shared understanding of the style, though I'm not sure exactly how to achieve that. |
And that's what I'd be most interested in, @crandmck do you have any suggestions on achieving a common "voice" among such a disparate set of authors PRing the nodejs docs? Should we even worry about it? What is express doing, relying on you to copy edit? ;-) |
@gibfahn I definitely prefer
Maybe I'm extrapolating too much from my own personal experience, but if I'm reading docs not written by a professional technical writer, and I see That said, if
Again, this is a nit and I'm totally willing to let it go, but here's the reason I recommend avoiding Using a I'd prefer we avoid it altogether and use
We do have a style guide at https://github.com/nodejs/docs/blob/master/STYLE-GUIDE.md.
Definitely agree 100% with all of that paragraph. |
@sam-github Maybe
There is a style guide at https://github.com/nodejs/docs/blob/master/STYLE-GUIDE.md but it's not very easily discoverable there. I like @gibfahn's idea of having a style guide in |
😆 Yeah I had no idea that existed. I'll PR moving it to Using
Whether or not we move the Style Guide into the main repo it'd be great to have @crandmck look at it. |
I'm not a huge fan of "therefore". It implies a causal relationship where there isn't one. Here's a more obvious example: "The behavior of |
Other than having an individual person who is a good editor, your best bet is to have a comprehensive style guide. What you have in https://github.com/nodejs/docs/blob/master/STYLE-GUIDE.md is a start, but needs lots of work. Express does have a minimal documentation style guide. I know we could definitely improve it as well... The reality is that even having an extensive style guide won't eliminate all controversy over wording. Oftentimes there is more than one "right" answer and it comes down to a matter of opinion. In general, my approach with usage is to err on the side of caution. Even things that seem obvious to English-speakers may be problematic for non-English speakers (or non-native speakers). For this reason, in Express we recommend avoiding Latin abbreviations ("e.g.," "i.e.," "etc.") for clarity. While it may be true that one can easily look up the meanings of these, that just adds "friction" to comprehension. Better to just make the wording dead simple where possible.
Not to beat a dead horse, but since you asked, I'll give you my two cents worth on this particular PR. To me, the most problematic thing here is the phrase "...getting returns.." which is awkward and confusing. It's also best to specify what "this" means, provide links for references, and use active voice when possible. So (IIUC) I'd rewrite as:
|
That seems 👍 to me. I'd prefer adding |
You are absolutely right. That was a typo/omission on my part. |
Let me go and LGTM. I think the language used is completely understandable. Does every documentation addition go through this level of scrutiny? :) |
I agree that "getting returns" is a bit clunky, but repeating "out-of-bounds" three times is worse IMO. And there's technically no such thing as an "out-of-bounds element". It's called out-of-bounds because there are no elements there. |
@ronkorving asked:
No. It's usually much, much worse. @seishun wrote:
FWIW,
(I'm reconsidering my previous opposition to using a colon after |
Can we reach a conclusion here? For documentation I would err on the side of clarity, even if doing so sacrifices brevity. @Trott's wording SGTM. |
FWIW, although I had a bunch of comments, I do not object to this just landing as-is. I would prefer the wording I suggested, of course, but not so strongly that I would stop this over it. |
@seishun Can you squash the commits and land this? Thanks! |
I decided to bring back the dash following @gibfahn's and @sam-github's comments (it doesn't look right with a colon). If no one feels strongly about it, I'll merge with the current wording. |
Landed in 01ffe30. |
is this applicable to lts? |
I think it is. |
PR-URL: nodejs/node#11286 Fixes: nodejs/node#11244 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ron Korving <ron@ronkorving.nl>
Fixes: #11244
Checklist
Affected core subsystem(s)
doc