doc: fix ReST markup

This commit is contained in:
Sebastian Ullrich 2022-03-26 22:48:38 +01:00
parent bef34e30e7
commit 85c7772f4c

View file

@ -22,7 +22,7 @@ inductive Vector (α : Type u) : Nat → Type u
| cons : α → Vector α n → Vector α (n+1)
/-|
We can overload the `List.cons` notation `::` and use it to create `Vector`s.
We can overload the `List.cons` notation `::` and use it to create `Vector`\ s.
-/
infix:67 " :: " => Vector.cons