Skip to content

Commit 9f139d0

Browse files
committed
Correct nested interpolation
1 parent 23b99a4 commit 9f139d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tensors/linalg.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ for f in (:sqrt, :log, :asin, :acos, :acosh, :atanh, :acoth)
464464
sf = string(f)
465465
@eval function Base.$f(t::AbstractTensorMap)
466466
domain(t) == codomain(t) ||
467-
error("$sf of a tensor only exist when domain == codomain.")
467+
error("$($sf) of a tensor only exist when domain == codomain.")
468468
T = complex(float(scalartype(t)))
469469
tf = similar(t, T)
470470
for (c, b) in blocks(t)

0 commit comments

Comments
 (0)