diff options
author | Roger Dingledine <arma@torproject.org> | 2007-02-26 05:36:02 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2007-02-26 05:36:02 +0000 |
commit | 522a97098beccf8c6410fe903266ced5d2f4577d (patch) | |
tree | 0785151faaea1df374b7d449570383a1e6c5106f /src/common/container.h | |
parent | 9e44449946623a50d9f51dfcea0b765a7bdeec91 (diff) | |
download | tor-522a97098beccf8c6410fe903266ced5d2f4577d.tar.gz tor-522a97098beccf8c6410fe903266ced5d2f4577d.zip |
more cleanups; getting closer
svn:r9655
Diffstat (limited to 'src/common/container.h')
-rw-r--r-- | src/common/container.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/container.h b/src/common/container.h index fbd3c6c603..b07f92b636 100644 --- a/src/common/container.h +++ b/src/common/container.h @@ -157,7 +157,7 @@ char *smartlist_join_strings2(smartlist_t *sl, const char *join, } } while (0) /** Helper: While in a SMARTLIST_FOREACH loop over the list <b>sl</b> indexed - * with the variable <b>var</b>, remover the current element in a way that + * with the variable <b>var</b>, remove the current element in a way that * won't confuse the loop. */ #define SMARTLIST_DEL_CURRENT(sl, var) \ do { \ |