From 2e82caee09a0f0b3d7de881e9004daa6ec49645c Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Thu, 18 Jan 2018 13:06:43 -0500 Subject: [PATCH] Update documentation --- nacl.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nacl.h b/nacl.h index 33da593d..58059629 100644 --- a/nacl.h +++ b/nacl.h @@ -227,7 +227,7 @@ int crypto_box_open_afternm(uint8_t *m,const uint8_t *c,uint64_t d,const uint8_t /// downlevel interop may also be needed of cryptocurrencies like Bitcoin, Ethereum, Monero /// and Zcash. /// \returns 0 on success, non-0 otherwise -/// \warn This version of crypto_box() does not check for small order elements. It should not +/// \warning This version of crypto_box() does not check for small order elements. It should not /// be used in new software. /// \sa NaCl crypto_box documentation, /// May the Fourth Be With You: A Microarchitectural @@ -251,7 +251,7 @@ int crypto_box_unchecked(uint8_t *c,const uint8_t *m,uint64_t d,const uint8_t *n /// downlevel interop may also be needed of cryptocurrencies like Bitcoin, Ethereum, Monero /// and Zcash. /// \returns 0 on success, non-0 otherwise -/// \warn This version of crypto_box_open() does not check for small order elements. It should not +/// \warning This version of crypto_box_open() does not check for small order elements. It should not /// be used in new software. /// \sa NaCl crypto_box documentation, /// May the Fourth Be With You: A Microarchitectural @@ -273,7 +273,7 @@ int crypto_box_open_unchecked(uint8_t *m,const uint8_t *c,uint64_t d,const uint8 /// downlevel interop may also be needed of cryptocurrencies like Bitcoin, Ethereum, Monero /// and Zcash. /// \returns 0 on success, non-0 otherwise -/// \warn This version of crypto_box_beforenm() does not check for small order elements. It should not +/// \warning This version of crypto_box_beforenm() does not check for small order elements. It should not /// be used in new software. /// \sa NaCl crypto_box documentation, /// May the Fourth Be With You: A Microarchitectural