Skip to content

Commit 809ab02

Browse files
authored
Fix typo in ErrrorException (#130)
1 parent c54d7bf commit 809ab02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/functionmap.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ function _unsafe_mul!(y::AbstractVecOrMat, At::TransposeFunctionMap, x::Abstract
127127
conj!(y)
128128
return y
129129
else
130-
error("transpose not implemented for $(A.lmap)")
130+
error("transpose not implemented for $A")
131131
end
132132
end
133133

@@ -142,6 +142,6 @@ function _unsafe_mul!(y::AbstractVecOrMat, Ac::AdjointFunctionMap, x::AbstractVe
142142
conj!(y)
143143
return y
144144
else
145-
error("adjoint not implemented for $(A.lmap)")
145+
error("adjoint not implemented for $A")
146146
end
147147
end

0 commit comments

Comments
 (0)