aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/compression
diff options
context:
space:
mode:
authorRenĂ© Korthaus <[email protected]>2016-10-18 16:38:50 +0200
committerRenĂ© Korthaus <[email protected]>2016-10-19 09:13:45 +0200
commitda2e26b15f7f6882768f1cb7e8a5be1b1893bf8a (patch)
treeb83ce7adb7b8837981c210662675941febc645c4 /src/lib/compression
parent99d71e5693f45c2b34528158ad8d8b641bcc87e3 (diff)
Fix doxygen warnings [ci skip]
Diffstat (limited to 'src/lib/compression')
-rw-r--r--src/lib/compression/compression.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/compression/compression.h b/src/lib/compression/compression.h
index db2722305..f135f6d04 100644
--- a/src/lib/compression/compression.h
+++ b/src/lib/compression/compression.h
@@ -33,7 +33,7 @@ class BOTAN_DLL Compression_Algorithm
/**
* Process some data. Input must be in size update_granularity() byte blocks.
- * @param blocks in/out parameter which will possibly be resized or swapped
+ * @param buf in/out parameter which will possibly be resized or swapped
* @param offset an offset into blocks to begin processing
* @param flush if true the compressor will be told to flush state
*/
@@ -77,7 +77,7 @@ class BOTAN_DLL Decompression_Algorithm
/**
* Process some data. Input must be in size update_granularity() byte blocks.
- * @param blocks in/out parameter which will possibly be resized or swapped
+ * @param buf in/out parameter which will possibly be resized or swapped
* @param offset an offset into blocks to begin processing
*/
virtual void update(secure_vector<byte>& buf, size_t offset = 0) = 0;