We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d81137 commit f54b767Copy full SHA for f54b767
doc/tutorial.md
@@ -1233,8 +1233,8 @@ avoiding expensive copies.
1233
1234
Rust has three "realms" in which objects can be allocated: the stack,
1235
the local heap, and the exchange heap. These realms have corresponding
1236
-pointer types: the borrowed pointer (`&T`), the shared pointer (`@T`),
1237
-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
1238
repeatedly as we explore the language. Learning the appropriate role
1239
of each is key to using Rust effectively.
1240
0 commit comments