From 0f401540af7cf9d0b7880e13e8766700c0e65d0d Mon Sep 17 00:00:00 2001 From: Tommy Hofmann Date: Wed, 18 Sep 2024 14:33:04 +0200 Subject: [PATCH] fix: typo in coprime base (#1798) --- src/algorithms/coprime_base.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/algorithms/coprime_base.jl b/src/algorithms/coprime_base.jl index ecc9da08f..796402a85 100644 --- a/src/algorithms/coprime_base.jl +++ b/src/algorithms/coprime_base.jl @@ -53,7 +53,7 @@ function coprime_base(S::Vector{E}) where {E <: RingElement} return coprime_base_steel(S) end -function coprime_base_steel(S::Vector) +function coprime_base_steel(S::Vector{E}) where {E} @assert !isempty(S) T = Array{E}(undef, 1) T[1] = S[1]