]> git.lizzy.rs Git - rust.git/commitdiff
"Rust task" should be "Rust program" in the intro to the Memory Model docs
authorMatt Brubeck <mbrubeck@cs.hmc.edu>
Fri, 20 Jan 2012 05:28:01 +0000 (21:28 -0800)
committerMatt Brubeck <mbrubeck@cs.hmc.edu>
Fri, 20 Jan 2012 05:54:17 +0000 (21:54 -0800)
doc/rust.md

index a09dd5cd41b566b27b97ad4ffed5d863e748d4c0..824d3301b8f68571982f303594a683b7448bab10 100644 (file)
@@ -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*.