From 8694a0d26d5779904efa2b2f0e7846cfc96493c6 Mon Sep 17 00:00:00 2001 From: Damian Lin <31408307+DamianJLin@users.noreply.github.com> Date: Sat, 4 Jul 2026 23:02:50 +1000 Subject: [PATCH] Fix typo --- docs/src/man/spaces.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/man/spaces.md b/docs/src/man/spaces.md index 63362cd9e..cb7a593de 100644 --- a/docs/src/man/spaces.md +++ b/docs/src/man/spaces.md @@ -113,7 +113,7 @@ CartesianSpace ComplexSpace ``` -They represent the Euclidean spaces ``ℝ^d`` or ``C^d`` without further inner structure. +They represent the Euclidean spaces ``ℝ^d`` or ``ℂ^d`` without further inner structure. They can be created using the syntax `CartesianSpace(d) == ℝ^d` and `ComplexSpace(d) == ℂ^d`, or `ComplexSpace(d, true) == ComplexSpace(d; dual = true) == (ℂ^d)'` for the dual space of the latter. Note that the brackets are required because of the precedence rules, since `d' == d` for `d::Integer`.