diff options
author | Nick Mathewson <nickm@torproject.org> | 2009-12-15 13:20:02 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2009-12-15 13:20:02 -0500 |
commit | 2c672f73bfdcb4cf44a0dbcb4706b804d2273379 (patch) | |
tree | 6a3de75fa03343ea588f053df873db8be9548a26 /src/common/container.c | |
parent | 06e8370c33d6ccb73d55e9e8c3d2673c48d7b328 (diff) | |
download | tor-2c672f73bfdcb4cf44a0dbcb4706b804d2273379.tar.gz tor-2c672f73bfdcb4cf44a0dbcb4706b804d2273379.zip |
Fix comment typos in container.c
Diffstat (limited to 'src/common/container.c')
-rw-r--r-- | src/common/container.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/container.c b/src/common/container.c index 8b3bbeac52..f452a51e42 100644 --- a/src/common/container.c +++ b/src/common/container.c @@ -725,7 +725,7 @@ smartlist_pqueue_add(smartlist_t *sl, } /** Remove and return the top-priority item from the heap stored in <b>sl</b>, - * where order is determined by <b>compare</b> and the item's position in is + * where order is determined by <b>compare</b> and the item's position is * stored at position <b>idx_field_offset</b> within the item. <b>sl</b> must * not be empty. */ void * @@ -747,7 +747,7 @@ smartlist_pqueue_pop(smartlist_t *sl, } /** Remove the item <b>item</b> from the heap stored in <b>sl</b>, - * where order is determined by <b>compare</b> and the item's position in is + * where order is determined by <b>compare</b> and the item's position is * stored at position <b>idx_field_offset</b> within the item. <b>sl</b> must * not be empty. */ void |