about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/doc/nomicon/coercions.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/nomicon/coercions.md b/src/doc/nomicon/coercions.md
index 2e33a6729d1..1d2897ce3bd 100644
--- a/src/doc/nomicon/coercions.md
+++ b/src/doc/nomicon/coercions.md
@@ -22,7 +22,7 @@ Coercion is allowed between the following types:
 for all pointer types (including smart pointers like Box and Rc). Unsize is
 only implemented automatically, and enables the following transformations:
 
-* `[T, ..n]` => `[T]`
+* `[T; n]` => `[T]`
 * `T` => `Trait` where `T: Trait`
 * `Foo<..., T, ...>` => `Foo<..., U, ...>` where:
     * `T: Unsize<U>`