Skip to content

Commit 1a6a9b1

Browse files
lkdvosJutho
authored andcommitted
Fix docstring
1 parent e0e72fc commit 1a6a9b1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/tensors/tensor.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ dim(t::TensorMap) = length(t.data)
7474
TensorMap{T}(undef, codomain ← domain)
7575
TensorMap{T}(undef, domain → codomain)
7676
# expert mode: select storage type `A`
77-
TensorMap{T,S,N₁,N₂,A}(undef, codomain::ProductSpace{S,N₁}, domain::ProductSpace{S,N₂})
77+
TensorMap{T,S,N₁,N₂,A}(undef, codomain ← domain)
78+
TensorMap{T,S,N₁,N₂,A}(undef, domain → domain)
7879
7980
Construct a `TensorMap` with uninitialized data.
8081
"""

0 commit comments

Comments
 (0)