diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-11-15 00:48:53 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-11-15 00:48:53 -0500 |
commit | 1256cab54b5248b9885196f474fbb50304a0e45a (patch) | |
tree | 2af2a8f4e552b04f38ee6240f7494eae1d87c61f /libdimension/dimension/list.h | |
parent | 8fe33a340b8979a73fa84f201c15519a9b5d0266 (diff) | |
download | dimension-1256cab54b5248b9885196f474fbb50304a0e45a.tar.xz |
End sentences with periods.
Diffstat (limited to 'libdimension/dimension/list.h')
-rw-r--r-- | libdimension/dimension/list.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libdimension/dimension/list.h b/libdimension/dimension/list.h index 9046583..9d99c9f 100644 --- a/libdimension/dimension/list.h +++ b/libdimension/dimension/list.h @@ -34,10 +34,10 @@ * A list iterator. */ typedef struct dmnsn_list_iterator { - void *ptr; /**< @internal The stored object */ - size_t obj_size; /**< @internal The object size */ - struct dmnsn_list_iterator *prev; /**< @internal The previous iterator */ - struct dmnsn_list_iterator *next; /**< @internal The next iterator */ + void *ptr; /**< @internal The stored object. */ + size_t obj_size; /**< @internal The object size. */ + struct dmnsn_list_iterator *prev; /**< @internal The previous iterator. */ + struct dmnsn_list_iterator *next; /**< @internal The next iterator. */ } dmnsn_list_iterator; /** @@ -75,10 +75,10 @@ dmnsn_delete_list_iterator(dmnsn_list_iterator *i) /** A doubly-linked list. */ typedef struct dmnsn_list { - dmnsn_list_iterator *first; /**< @internal The first iterator in the list */ - dmnsn_list_iterator *last; /**< @internal The last iterator in the list */ - size_t length; /**< @internal The size of the list */ - size_t obj_size; /**< @internal The size of list objects */ + dmnsn_list_iterator *first; /**< @internal The first iterator in the list. */ + dmnsn_list_iterator *last; /**< @internal The last iterator in the list. */ + size_t length; /**< @internal The size of the list. */ + size_t obj_size; /**< @internal The size of list objects. */ } dmnsn_list; /** @@ -331,7 +331,7 @@ dmnsn_list_pop(dmnsn_list *list, void *obj) */ dmnsn_list *dmnsn_list_split(dmnsn_list *list); -/** List object comparator function type */ +/** List object comparator function type. */ typedef bool dmnsn_list_comparator_fn(dmnsn_list_iterator *l, dmnsn_list_iterator *r); |