Index: uspace/lib/libc/include/libadt/hash_table.h
===================================================================
--- uspace/lib/libc/include/libadt/hash_table.h	(revision 00acd66d3981789b3f8b04cdd854d29343dd9aa0)
+++ uspace/lib/libc/include/libadt/hash_table.h	(revision 8c20b26354d64b3b5d419d182d91ed2f83cbeacf)
@@ -56,7 +56,8 @@
 	/** Hash function.
 	 *
-	 * @param key Array of keys needed to compute hash index. All keys must be passed.
+	 * @param key 	Array of keys needed to compute hash index. All keys
+	 *		must be passed.
 	 *
-	 * @return Index into hash table.
+	 * @return	Index into hash table.
 	 */
 	hash_index_t (* hash)(unsigned long key[]);
@@ -64,7 +65,8 @@
 	/** Hash table item comparison function.
 	 *
-	 * @param key Array of keys that will be compared with item. It is not necessary to pass all keys.
+	 * @param key 	Array of keys that will be compared with item. It is
+	 *		not necessary to pass all keys.
 	 *
-	 * @return true if the keys match, false otherwise.
+	 * @return 	true if the keys match, false otherwise.
 	 */
 	int (*compare)(unsigned long key[], hash_count_t keys, link_t *item);
@@ -72,5 +74,5 @@
 	/** Hash table item removal callback.
 	 *
-	 * @param item Item that was removed from the hash table.
+	 * @param item 	Item that was removed from the hash table.
 	 */
 	void (*remove_callback)(link_t *item);
