From 5a3e2761a45b5be3eeac432640e2679faf9904df Mon Sep 17 00:00:00 2001 From: kalmar Date: Tue, 11 Jul 2017 16:01:42 +0200 Subject: [PATCH] change throw message --- src/GroupRings.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GroupRings.jl b/src/GroupRings.jl index 318870f..4d23d13 100644 --- a/src/GroupRings.jl +++ b/src/GroupRings.jl @@ -323,7 +323,7 @@ function mul!{T}(result::AbstractVector{T}, X::AbstractVector{T}, Y::AbstractVec if y != z for (i, index) in enumerate(pm[:,j]) if X[i] != z - index == 0 && throw(ArgumentError("The product don't seem to belong to the span of basis!")) + index == 0 && throw(ArgumentError("The product don't seem to be supported on basis!")) result[index] += X[i]*y end end