From: CuleX Date: Sat, 14 Oct 2017 11:28:38 +0000 (+0200) Subject: Fix typo in comment X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=5510f7318e4552cd3be74f3582dae134b22d2a91;p=Monocypher.git Fix typo in comment paralell -> parallel --- diff --git a/src/monocypher.c b/src/monocypher.c index eba4074..7c00955 100644 --- a/src/monocypher.c +++ b/src/monocypher.c @@ -1510,7 +1510,7 @@ void crypto_sign_init_second_pass(crypto_sign_ctx *ctx) ge_tobytes(half_sig, &R); // Hash R, the public key, and the message together. - // It cannot be done in paralell with the first hash. + // It cannot be done in parallel with the first hash. HASH_INIT (&ctx->hash); HASH_UPDATE(&ctx->hash, half_sig, 32); HASH_UPDATE(&ctx->hash, ctx->pk , 32);