From 8bd52024ae7ac2048ddb11e70839ddda1d058872 Mon Sep 17 00:00:00 2001 From: Rich Lane Date: Sun, 5 Jan 2014 17:33:13 -0800 Subject: [PATCH] doc: update reference to new vector size syntax --- doc/rust.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/rust.md b/doc/rust.md index ea592d1fde5..81d84c6661a 100644 --- a/doc/rust.md +++ b/doc/rust.md @@ -3054,8 +3054,7 @@ assert!(b != "world"); The vector type constructor represents a homogeneous array of values of a given type. A vector has a fixed size. (Operations like `vec.push` operate solely on owned vectors.) -A vector type can be annotated with a _definite_ size, -written with a trailing asterisk and integer literal, such as `[int * 10]`. +A vector type can be annotated with a _definite_ size, such as `[int, ..10]`. Such a definite-sized vector type is a first-class type, since its size is known statically. A vector without such a size is said to be of _indefinite_ size, and is therefore not a _first-class_ type.