-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
Spelling and grammar #17548
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
Spelling and grammar #17548
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,10 +34,10 @@ def wrapper(self): | |
|
||
class ChainMap(MutableMapping): | ||
""" A ChainMap groups multiple dicts (or other mappings) together | ||
to create a single, updateable view. | ||
|
||
to create a single, updatable view. | ||
The underlying mappings are stored in a list. That list is public and can | ||
accessed or updated using the *maps* attribute. There is no other state. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Keep the space after the period. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I see that it's because of There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are 2 whitespaces necessary? It had two, reduced to one. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For consistency, yes. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can the slash have spaces before and after? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Perfectly fine. |
||
be accessed / updated using the *maps* attribute. There is no other state. | ||
|
||
Lookups search the underlying mappings successively until a key is found. | ||
In contrast, writes, updates, and deletions only operate on the first | ||
|
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.
Did you add a whitespace by accident?