Skip to content

Commit 7368e37

Browse files
committed
tutorial: Add a better description of vectors
1 parent 0385ae1 commit 7368e37

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/tutorial.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1376,9 +1376,9 @@ fn increase_contents(pt: @mut int) {
13761376
13771377
# Vectors
13781378
1379-
Vectors represent a section of memory that contains some number
1380-
of values. Like other types in Rust, vectors can be stored on
1381-
the stack, the local heap, or the exchange heap.
1379+
Vectors are a contiguous section of memory containing zero or more
1380+
values of the same type. Like other types in Rust, vectors can be
1381+
stored on the stack, the local heap, or the exchange heap.
13821382
13831383
~~~
13841384
enum crayon {

0 commit comments

Comments
 (0)