]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix comments in lib/container/*.c
authorNick Mathewson <nickm@torproject.org>
Tue, 26 Jun 2018 15:33:53 +0000 (11:33 -0400)
committerNick Mathewson <nickm@torproject.org>
Tue, 26 Jun 2018 15:33:53 +0000 (11:33 -0400)
src/lib/container/bloomfilt.c
src/lib/container/map.c
src/lib/container/order.c
src/lib/container/smartlist.c

index cbb4d13e5d491d1edeeef1df6b3f926a45fb8b47..2133c280a5a59c249fe02965e14da58cf6233b41 100644 (file)
@@ -4,11 +4,8 @@
 /* See LICENSE for licensing information */
 
 /**
- * \file container.c
- * \brief Implements a smartlist (a resizable array) along
- * with helper functions to use smartlists.  Also includes
- * hash table implementations of a string-to-void* map, and of
- * a digest-to-void* map.
+ * \file bloomfilt.c
+ * \brief Uses bitarray_t to implement a bloom filter.
  **/
 
 #include <stdlib.h>
index 5f280b3169b048fdc036d6fafadd7ea40bf0a9f1..3d84356cc8b6e9cd9d35104891b7e6bc899cd2a9 100644 (file)
@@ -5,9 +5,7 @@
 
 /**
  * \file container.c
- * \brief Implements a smartlist (a resizable array) along
- * with helper functions to use smartlists.  Also includes
- * hash table implementations of a string-to-void* map, and of
+ * \brief Hash table implementations of a string-to-void* map, and of
  * a digest-to-void* map.
  **/
 
index 4fdd51d996967777ec913085acd2959933bedd9c..1efef2c7344b016443f63960ab78158b8459403e 100644 (file)
@@ -4,11 +4,8 @@
 /* See LICENSE for licensing information */
 
 /**
- * \file container.c
- * \brief Implements a smartlist (a resizable array) along
- * with helper functions to use smartlists.  Also includes
- * hash table implementations of a string-to-void* map, and of
- * a digest-to-void* map.
+ * \file order.c
+ * \brief Functions for finding the n'th element of an array.
  **/
 
 #include <stdlib.h>
index 852a32810d2d3ae09b853bcde9cf5bdd83249997..3c0844384a78d6fc59b18d43933e32ac6928a102 100644 (file)
@@ -6,9 +6,7 @@
 /**
  * \file container.c
  * \brief Implements a smartlist (a resizable array) along
- * with helper functions to use smartlists.  Also includes
- * hash table implementations of a string-to-void* map, and of
- * a digest-to-void* map.
+ * with helper functions to use smartlists.
  **/
 
 #include "lib/malloc/util_malloc.h"