From 1256cab54b5248b9885196f474fbb50304a0e45a Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Mon, 15 Nov 2010 00:48:53 -0500 Subject: End sentences with periods. --- libdimension/dimension/array.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libdimension/dimension/array.h') diff --git a/libdimension/dimension/array.h b/libdimension/dimension/array.h index 514e13e..09746dd 100644 --- a/libdimension/dimension/array.h +++ b/libdimension/dimension/array.h @@ -29,12 +29,12 @@ #include /* For size_t */ #include /* For memcpy */ -/** Dynamic array type */ +/** Dynamic array type. */ typedef struct dmnsn_array { - void *ptr; /**< @internal The actual memory */ - size_t obj_size; /**< @internal The size of each object */ - size_t length; /**< @internal The current size of the array */ - size_t capacity; /**< @internal The size of the allocated space */ + void *ptr; /**< @internal The actual memory. */ + size_t obj_size; /**< @internal The size of each object. */ + size_t length; /**< @internal The current size of the array. */ + size_t capacity; /**< @internal The size of the allocated space. */ } dmnsn_array; /** -- cgit v1.2.3