diff options
author | Mattias Andrée <maandree@kth.se> | 2023-07-06 15:49:36 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2023-07-06 15:49:36 +0200 |
commit | f6c20826c7389485dfc4c80509452aa6ec57c147 (patch) | |
tree | 0317de7302980f15b819aad57236c0c75df5d7e5 | |
parent | Use predefined macros to figure out endianness (diff) | |
download | libblake-f6c20826c7389485dfc4c80509452aa6ec57c147.tar.gz libblake-f6c20826c7389485dfc4c80509452aa6ec57c147.tar.bz2 libblake-f6c20826c7389485dfc4c80509452aa6ec57c147.tar.xz |
m doc fix
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r-- | libblake.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -870,8 +870,8 @@ libblake_blake2s_update(struct libblake_blake2s_state *state, const void *data, * has been reached * * Unlike `libblake_blake2s_update`, this function - * will all input data if `len` is a multiple of - * 64, however the application must make sure that + * will process all input data if `len` is a multiple + * of 64, however the application must make sure that * there is more data to process * * @param state The state of the hash function @@ -971,8 +971,8 @@ libblake_blake2b_update(struct libblake_blake2b_state *state, const void *data, * has been reached * * Unlike `libblake_blake2b_update`, this function - * will all input data if `len` is a multiple of - * 128, however the application must make sure that + * will processes all input data if `len` is a multiple + * of 128, however the application must make sure that * there is more data to process * * @param state The state of the hash function |