-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Grammarly #921
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
Conversation
The subject of this section is finding examples of excellent code, not "readability matters".
One of the core tenets behind the design of Python is creating | ||
readable code. The motivation behind this design is simple: The number | ||
one thing that Python programmers do is read code. | ||
|
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.
I'm thinking this paragraph works quite well—did you want to remove it entirely?
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.
I think this paragraph is a good intro to issues of style, formatting, and PEP-8, but I think this section is about a different topic.
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.
So yes, I would remove it.
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.
👍 Makes sense!
docs/writing/reading.rst
Outdated
@@ -28,12 +24,12 @@ reading. Each one of these projects is a paragon of Python coding. | |||
- `Diamond <https://github.com/python-diamond/Diamond>`_ | |||
Diamond is a python daemon that collects metrics | |||
and publishes them to Graphite or other backends. | |||
It is capable of collecting cpu, memory, network, i/o, load and disk metrics. | |||
It is capable of collecting cpu, memory, network, i/o, load, and disk metrics. |
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 use capitals for "CPU" and "I/O"?
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.
Agreed, CPU and I/O should be upper case.
@mpoulin Added some comments—merge at will Marc 😃 |
Please have a look before I merge.
I make some grammar/punctuation fixes. Also, I deleted the first paragraph. It didn't seem to fit the overall theme of this section.