summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Færøy <ahf@torproject.org>2017-09-28 15:14:50 +0200
committerAlexander Færøy <ahf@torproject.org>2017-09-28 18:58:09 +0200
commita196fdb622590baaed46de0719daa151086c0ed6 (patch)
tree1e6a1e21a938cd3368ebe143810ecb0e9efc4f2e
parent3a073c463dbade2171a1a6ec1558bd81c0ff27f9 (diff)
downloadtor-a196fdb622590baaed46de0719daa151086c0ed6.tar.gz
tor-a196fdb622590baaed46de0719daa151086c0ed6.zip
Fix typo in buffers.c.
-rw-r--r--src/common/buffers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/buffers.c b/src/common/buffers.c
index bf10c55962..e9e4487832 100644
--- a/src/common/buffers.c
+++ b/src/common/buffers.c
@@ -964,7 +964,7 @@ buf_get_line(buf_t *buf, char *data_out, size_t *data_len)
return 1;
}
-/** Compress on uncompress the <b>data_len</b> bytes in <b>data</b> using the
+/** Compress or uncompress the <b>data_len</b> bytes in <b>data</b> using the
* compression state <b>state</b>, appending the result to <b>buf</b>. If
* <b>done</b> is true, flush the data in the state and finish the
* compression/uncompression. Return -1 on failure, 0 on success. */