tutorial: Remove mutable vector syntax

This commit is contained in:
Brian Anderson 2012-12-20 03:03:08 -08:00
parent e0f9f89c65
commit 64681213af

View file

@ -329,7 +329,6 @@ while N should be a literal number):
------------------------- ----------------------------------------------- ------------------------- -----------------------------------------------
`[T * N]` Vector (like an array in other languages) with N elements `[T * N]` Vector (like an array in other languages) with N elements
`[mut T * N]` Mutable vector with N elements
`(T1, T2)` Tuple type; any arity above 1 is supported `(T1, T2)` Tuple type; any arity above 1 is supported
`&T`, `~T`, `@T` [Pointer types](#boxes-and-pointers) `&T`, `~T`, `@T` [Pointer types](#boxes-and-pointers)
------------------------- ----------------------------------------------- ------------------------- -----------------------------------------------