diff --git a/doc/tutorial.md b/doc/tutorial.md index 60b2d9177e6ef39a342da791d963be242722c8a6..deafe9cd0b5991d6148fdf7473e85add14197539 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.