From 939e8f571b7d205371c0e3cb65cf28d7964a16c6 Mon Sep 17 00:00:00 2001 From: Elliot Saba Date: Thu, 11 Jan 2018 00:04:57 -0800 Subject: [PATCH] fix typo in comment --- src/types.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.jl b/src/types.jl index be00fe8..d8acf78 100644 --- a/src/types.jl +++ b/src/types.jl @@ -145,5 +145,5 @@ show(io::IO, ::SHA3_384_CTX) = write(io, "SHA3 384-bit hash state") show(io::IO, ::SHA3_512_CTX) = write(io, "SHA3 512-bit hash state") -# use out types to define a method to get a pointer to the state buffer +# use our types to define a method to get a pointer to the state buffer buffer_pointer(ctx::T) where {T<:SHA_CTX} = Ptr{state_type(T)}(pointer(ctx.buffer))