From a37729f31bd325223bd3c431845d32bc5c634121 Mon Sep 17 00:00:00 2001 From: Tim Chevalier Date: Thu, 6 Sep 2012 12:22:05 -0700 Subject: [PATCH] Tutorial: Link to section on boxes and pointers at first mention of ~, @, & As per suggestion on IRC from callen. --- doc/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tutorial.md b/doc/tutorial.md index ae1f52a2797..dd1f6b66f45 100644 --- a/doc/tutorial.md +++ b/doc/tutorial.md @@ -377,7 +377,7 @@ more detail later on (the `T`s here stand for any other type): : Tuple type. Any arity above 1 is supported. `@T`, `~T`, `&T` - : Pointer types. + : Pointer types. See [Boxes and pointers](#boxes-and-pointers) for an explanation of what `@`, `~`, and `&` mean. Some types can only be manipulated by pointer, never directly. For instance, you cannot refer to a string (`str`); instead you refer to a pointer to a