-
Notifications
You must be signed in to change notification settings - Fork 760
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
guide: fixes and some minor additions #802
Conversation
I went through the guide and fixed some grammar/consistency issues, and added some wording where I thought it appropriate. I also reordered the chapters to what I feel is a more natural flow of concepts.
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 is awesome, thank you so much for doing this! Great docs are so important for OSS projects. I personally suck at finding time to add to them though 😝
I chipped in with a few extra suggestions.
## `*args` and `**kwargs` for Python object calls | ||
|
||
There are several ways how to pass positional and keyword arguments to a Python object call. |
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.
Should we maybe call these "Python function calls" instead of "Python object calls"?
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.
For me both are fine; there isn't a big distinction between calling functions and calling other callables, such as classes to create an instance.
Awesome, thank you for so many improvements! Looks the test failure is caused by missing |
Co-Authored-By: Yuji Kanagawa <yuji.kngw.80s.revive@gmail.com> Co-Authored-By: David Hewitt <1939362+davidhewitt@users.noreply.github.com>
I went through the guide and fixed grammar/consistency/indentation issues,
and added some wording where I thought it appropriate.
I also reordered the chapters to what I feel is a more natural
flow of concepts.