Skip to content

Commit

Permalink
fix two typos in Objects/odictobject.c comments (pythonGH-8040)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertzk authored and taleinat committed Jul 6, 2018
1 parent c929df3 commit 6f19fc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Objects/odictobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Linked-List API
As noted, the linked-list implemented here does not have all the bells and
whistles. However, we recognize that the implementation may need to
change to accommodate performance improvements or extra functionality. To
that end, We use a simple API to interact with the linked-list. Here's a
that end, we use a simple API to interact with the linked-list. Here's a
summary of the methods/macros:
Node info:
Expand Down Expand Up @@ -444,7 +444,7 @@ Potential Optimizations
- Set node->key to NULL to indicate the node is not-in-use.
- Add _odict_EXISTS()?
- How to maintain consistency across resizes? Existing node pointers
would be invalidate after a resize, which is particularly problematic
would be invalidated after a resize, which is particularly problematic
for the iterators.
* Use a more stream-lined implementation of update() and, likely indirectly,
__init__().
Expand Down

0 comments on commit 6f19fc6

Please sign in to comment.