From 57fc438c8304e0deba28c78f46857fffc754be71 Mon Sep 17 00:00:00 2001 From: Vincent Hanquez Date: Mon, 18 Sep 2017 10:32:21 +0100 Subject: [PATCH] typo in documentation --- Crypto/KDF/Argon2.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Crypto/KDF/Argon2.hs b/Crypto/KDF/Argon2.hs index f9fa02a..53a8f89 100644 --- a/Crypto/KDF/Argon2.hs +++ b/Crypto/KDF/Argon2.hs @@ -63,7 +63,7 @@ type TimeCost = Word32 -- max 'FFI.ARGON2_MIN_MEMORY' (8 * 'hashParallelism') <= 'hashMemory' <= 'FFI.ARGON2_MAX_MEMORY' type MemoryCost = Word32 --- \ A parallelism degree, which defines the number of parallel threads. +-- | A parallelism degree, which defines the number of parallel threads. -- -- 'FFI.ARGON2_MIN_LANES' <= 'hashParallelism' <= 'FFI.ARGON2_MAX_LANES' && 'FFI.ARGON_MIN_THREADS' <= 'hashParallelism' <= 'FFI.ARGON2_MAX_THREADS' type Parallelism = Word32