summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2012-09-11 14:50:06 +0100
committerVincent Sanders <vince@netsurf-browser.org>2012-09-11 14:50:06 +0100
commit7dbf02c5cef37edeefd89bc23de49c22ce3e2e7f (patch)
tree9d8313da19d26e1830cce7797102e6aba52fba4b /src/utils
parent28490c875240db5c878eba2ec7ec1af7dc414521 (diff)
downloadlibdom-7dbf02c5cef37edeefd89bc23de49c22ce3e2e7f.tar.gz
libdom-7dbf02c5cef37edeefd89bc23de49c22ce3e2e7f.tar.bz2
fixup comment damage from automated type conversion
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/hashtable.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/hashtable.c b/src/utils/hashtable.c
index fb7c84a..db6ece8 100644
--- a/src/utils/hashtable.c
+++ b/src/utils/hashtable.c
@@ -114,7 +114,7 @@ dom_hash_table *_dom_hash_clone(dom_hash_table *ht)
* Destroys a hash table, freeing all memory associated with it.
*
* \param ht Hash table to destroy. After the function returns, this
- * will noint32_ter be valid
+ * will nolonger be valid
*/
void _dom_hash_destroy(dom_hash_table *ht)
{
@@ -305,7 +305,7 @@ uint32_t _dom_hash_get_length(struct dom_hash_table *ht)
* If you make changes to this hash table implementation, please rerun this
* test, and if possible, through valgrind to make sure there are no memory
* leaks or invalid memory accesses. If you add new functionality, please
- * include a test for it that has good coverage aint32_t side the other tests.
+ * include a test for it that has good coverage along side the other tests.
*/
#ifdef TEST_RIG