Skip to content

Commit 723b16c

Browse files
authored
Update maps.jl
1 parent 61991d4 commit 723b16c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/maps.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ is `union(m)`.
1010
Maps must also overload `invmap` to give the inverse of the map, which
1111
is equivalent to `invmap(m)[x] == findfirst(isequal(x), m)`.
1212
"""
13-
1413
abstract type Map{T} <: AbstractQuasiVector{T} end
1514

1615
invmap(M::Map) = error("Overload invmap(::$(typeof(M)))")
@@ -170,4 +169,4 @@ show(io::IO, P::Union{AffineMappedQuasiVector,AffineMappedQuasiMatrix}) = print(
170169
function summary(io::IO, P::Union{AffineMappedQuasiVector,AffineMappedQuasiMatrix})
171170
summary(io, parent(P))
172171
print(io, " affine mapped to $(parentindices(P)[1].x.domain)")
173-
end
172+
end

0 commit comments

Comments
 (0)