From 3276af7f2425d1fd55f8208c77b2a721c757b524 Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Thu, 19 Jan 2012 21:28:01 -0800 Subject: [PATCH] "Rust task" should be "Rust program" in the intro to the Memory Model docs --- doc/rust.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/rust.md b/doc/rust.md index a09dd5cd41b..824d3301b8f 100644 --- a/doc/rust.md +++ b/doc/rust.md @@ -2851,9 +2851,9 @@ and lifetime semantics of the memory model. ## Memory model -A Rust [task](#tasks)'s memory consists of a static set of *items*, a set of -tasks each with its own *stack*, and a *heap*. Immutable portions of the heap -may be shared between tasks, mutable portions may not. +A Rust program's memory consists of a static set of *items*, a set of +[tasks](#tasks) each with its own *stack*, and a *heap*. Immutable portions of +the heap may be shared between tasks, mutable portions may not. Allocations in the stack consist of *slots*, and allocations in the heap consist of *boxes*.