Skip to content

Commit 3d1c3bc

Browse files
committed
fix small errors in tutorial
1 parent 1f47fcf commit 3d1c3bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/man/tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ constructor as well as a unicode alternative using the symbol `→` (obtained as
136136

137137
```@repl tutorial
138138
P = space(U)
139-
space(U) == HomSpace(ℝ^3 ⊗ ℝ^4, ℝ^2) == (ℝ^3 ⊗ ℝ^4 ← ℝ^2) == ℝ^2 → ℝ^3 ⊗ ℝ^4
139+
space(U) == HomSpace(ℝ^3 ⊗ ℝ^4, ℝ^2) == (ℝ^3 ⊗ ℝ^4 ← ℝ^2) == (ℝ^2 → ℝ^3 ⊗ ℝ^4)
140140
(codomain(P), domain(P))
141141
```
142142

@@ -281,7 +281,7 @@ It also makes clear the isomorphism between linear maps `ℂ^n → ℂ^m` and te
281281

282282
```@repl tutorial
283283
m = randn(ComplexF64, ℂ^3, ℂ^4)
284-
m2 = permute(m, (1,2), ())
284+
m2 = permute(m, ((1, 2), ()))
285285
codomain(m2)
286286
space(m, 1)
287287
space(m, 2)

0 commit comments

Comments
 (0)