From 07706eb32bc58a0a3c34e59852de4a4e75f77327 Mon Sep 17 00:00:00 2001 From: Peter Williams Date: Sun, 30 Dec 2012 11:28:45 -0500 Subject: [PATCH] doc: Update pointer terminology w.r.t. plain strings --- doc/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tutorial.md b/doc/tutorial.md index 3d104ed7cea73..9166766f427ad 100644 --- a/doc/tutorial.md +++ b/doc/tutorial.md @@ -1282,7 +1282,7 @@ distinct type. They support most of the same allocation options as vectors, though the string literal without a storage sigil (for example, `"foo"`) is treated differently than a comparable vector (`[foo]`). Whereas plain vectors are stack-allocated fixed-length -vectors, plain strings are region pointers to read-only +vectors, plain strings are borrowed pointers to read-only memory. All strings are immutable. ~~~