From b7142dee3d6dc5628cd49e4beae54db171da2e33 Mon Sep 17 00:00:00 2001 From: Michael Krabbe Borregaard Date: Mon, 7 Jan 2019 22:31:41 +0100 Subject: [PATCH] fix typo --- src/Randomizations.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Randomizations.jl b/src/Randomizations.jl index afa3844..5883150 100644 --- a/src/Randomizations.jl +++ b/src/Randomizations.jl @@ -28,7 +28,7 @@ function Random.rand!(r::MatrixGenerator{R, A}) where {R} where {A <: Assemblage end Random.rand(r::MatrixGenerator{<:ComMatrix}) where R = copy(rand!(r)) -function Random.rand!(r::MatrixGenerator{C}) where {A <: ComMatrix} +function Random.rand!(r::MatrixGenerator{C}) where {C <: ComMatrix} RandomBooleanMatrices._curveball!(r.m.occurrences) r.m end