From e27a9e6aafee67761a78f7d0271d958696df02ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Proust?= Date: Thu, 8 Mar 2018 16:40:41 +0100 Subject: [PATCH] Minor code documentation fix in vendor crypto lib --- vendors/ocaml-blake2/src/blake2.mli | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vendors/ocaml-blake2/src/blake2.mli b/vendors/ocaml-blake2/src/blake2.mli index d6eede4e5..9cda35b60 100644 --- a/vendors/ocaml-blake2/src/blake2.mli +++ b/vendors/ocaml-blake2/src/blake2.mli @@ -19,8 +19,8 @@ module Blake2b : sig far. *) val direct : ?key:Cstruct.t -> Cstruct.t -> int -> hash - (** [direct ?key outbuf inbuf] writes the blake2b hash of [inbuf] in - [outbuf], using [key] is present. *) + (** [direct ?key inbuf len] is the blake2b hash of length [len], + using [key] is present. *) end (*---------------------------------------------------------------------------