diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-07-27 14:41:08 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-07-27 14:41:08 +0000 |
commit | 35561a542c3e9e4444153418c5290df5e4e3890a (patch) | |
tree | 433fa58712107d82641172066ff0641366f45408 /src/common/container.h | |
parent | 49db52abe6e9668a63c0bd6c5ac7c7dfd98751ff (diff) | |
download | tor-35561a542c3e9e4444153418c5290df5e4e3890a.tar tor-35561a542c3e9e4444153418c5290df5e4e3890a.tar.gz |
r13934@catbus: nickm | 2007-07-27 10:41:00 -0400
Fix spelling; add a comment.
svn:r10943
Diffstat (limited to 'src/common/container.h')
-rw-r--r-- | src/common/container.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/container.h b/src/common/container.h index 6a73caac0..36df11766 100644 --- a/src/common/container.h +++ b/src/common/container.h @@ -274,9 +274,10 @@ void* strmap_remove_lc(strmap_t *map, const char *key); #define BITARRAY_SHIFT 6 #define BITARRAY_MASK 63 #else -#error "int is neither 4 nor 8 bites. I can't deal with that." +#error "int is neither 4 nor 8 bytes. I can't deal with that." #endif +/** A random-access array of one-bit-wide elements. */ typedef unsigned int bitarray_t; /** Create a new bit array that can hold <b>n_bits</b> bits. */ static INLINE bitarray_t * |