From f54b76701324c2e01cb9d41d21b0489b8e8d3030 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Mon, 9 Jul 2012 11:44:45 -0700 Subject: [PATCH] tutorial: pointer -> box --- doc/tutorial.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/tutorial.md b/doc/tutorial.md index 60b2d9177e6..deafe9cd0b5 100644 --- a/doc/tutorial.md +++ b/doc/tutorial.md @@ -1233,8 +1233,8 @@ avoiding expensive copies. Rust has three "realms" in which objects can be allocated: the stack, the local heap, and the exchange heap. These realms have corresponding -pointer types: the borrowed pointer (`&T`), the shared pointer (`@T`), -and the unique pointer (`~T`). These three sigils will appear +pointer types: the borrowed pointer (`&T`), the shared box (`@T`), +and the unique box (`~T`). These three sigils will appear repeatedly as we explore the language. Learning the appropriate role of each is key to using Rust effectively.