-
Notifications
You must be signed in to change notification settings - Fork 465
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
Minor doc fixes #426
Minor doc fixes #426
Conversation
- class_property_descriptor - Contructor => Constructor - number - Nuber => Number - object - returns *undefined* not NULL if key doesn't exist - object_wrap - Contructor => Constructor - property_descriptor - environemnt => environment
- associated => associates - add a
We are definitely open to adding more examples info to help clarify the concepts. Will need a bit more time to take a look to see where they might go. @NickNaso might also have some suggestions. |
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.
LGTM, thanks for making our docs better!
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.
LGTM
Hi @bmacnaughton, In general we added the |
Thanks. I'll take a look and think about it a bit. |
@bmacnaughton please if it could help you, feel free to open an issue about that so we can sharing all the ideas together. |
- class_property_descriptor - Contructor => Constructor - object - returns *undefined* not NULL if key doesn't exist - object_wrap - Contructor => Constructor - property_descriptor - environemnt => environment PR-URL: #426 Reviewed-By: Michael Dawson <[email protected]> Reviewed-By: NickNaso <[email protected]>
Landed as c629553. @bmacnaughton thanks for the updates. |
- class_property_descriptor - Contructor => Constructor - object - returns *undefined* not NULL if key doesn't exist - object_wrap - Contructor => Constructor - property_descriptor - environemnt => environment PR-URL: nodejs/node-addon-api#426 Reviewed-By: Michael Dawson <[email protected]> Reviewed-By: NickNaso <[email protected]>
- class_property_descriptor - Contructor => Constructor - object - returns *undefined* not NULL if key doesn't exist - object_wrap - Contructor => Constructor - property_descriptor - environemnt => environment PR-URL: nodejs/node-addon-api#426 Reviewed-By: Michael Dawson <[email protected]> Reviewed-By: NickNaso <[email protected]>
- class_property_descriptor - Contructor => Constructor - object - returns *undefined* not NULL if key doesn't exist - object_wrap - Contructor => Constructor - property_descriptor - environemnt => environment PR-URL: nodejs/node-addon-api#426 Reviewed-By: Michael Dawson <[email protected]> Reviewed-By: NickNaso <[email protected]>
- class_property_descriptor - Contructor => Constructor - object - returns *undefined* not NULL if key doesn't exist - object_wrap - Contructor => Constructor - property_descriptor - environemnt => environment PR-URL: nodejs/node-addon-api#426 Reviewed-By: Michael Dawson <[email protected]> Reviewed-By: NickNaso <[email protected]>
As I was working through the docs I made edits when I noticed typos, misspellings, or in the case of object.md, incorrect information.
I find myself doing a bit more research than I wanted to in a few cases and wondered what your thoughts were on expanding some of the docs to include examples as opposed to (mostly just) API.
Here's a list of items that I found myself experimenting with to get something working because I couldn't deduce from the docs alone what I needed to do.
(actually I didn't get the last two working and just found a way around the issue but those were my first approaches.)
If you're open to providing more examples for the first two let me know where you think they belong and I'll work on some.
Thanks for the excellent doc. When I compare this to trying to get Nan working over a year ago it's night and day.