File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ Linked-List API
67
67
As noted, the linked-list implemented here does not have all the bells and
68
68
whistles. However, we recognize that the implementation may need to
69
69
change to accommodate performance improvements or extra functionality. To
70
- that end, We use a simple API to interact with the linked-list. Here's a
70
+ that end, we use a simple API to interact with the linked-list. Here's a
71
71
summary of the methods/macros:
72
72
73
73
Node info:
@@ -444,7 +444,7 @@ Potential Optimizations
444
444
- Set node->key to NULL to indicate the node is not-in-use.
445
445
- Add _odict_EXISTS()?
446
446
- How to maintain consistency across resizes? Existing node pointers
447
- would be invalidate after a resize, which is particularly problematic
447
+ would be invalidated after a resize, which is particularly problematic
448
448
for the iterators.
449
449
* Use a more stream-lined implementation of update() and, likely indirectly,
450
450
__init__().
You can’t perform that action at this time.
0 commit comments