about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPatrick Walton <pcwalton@mimiga.net>2014-01-31 16:45:12 -0800
committerHuon Wilson <dbau.pp+github@gmail.com>2014-02-02 01:44:50 +1100
commit4dbcf800d5bd0ec46cb3637a4bb1183d84594843 (patch)
treee855bb66f0f64553790d4544b327e1f76df3f42f
parent8b8419293cb69d208a0d4f3a89dd01b0d394a6c6 (diff)
downloadrust-4dbcf800d5bd0ec46cb3637a4bb1183d84594843.tar.gz
rust-4dbcf800d5bd0ec46cb3637a4bb1183d84594843.zip
doc: Remove references to `@str` from the documentation
-rw-r--r--doc/rust.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/rust.md b/doc/rust.md
index 503d1a1072b..7a9d5d26b57 100644
--- a/doc/rust.md
+++ b/doc/rust.md
@@ -3079,7 +3079,7 @@ A value of type `str` is a Unicode string,
 represented as a vector of 8-bit unsigned bytes holding a sequence of UTF-8 codepoints.
 Since `str` is of unknown size, it is not a _first class_ type,
 but can only be instantiated through a pointer type,
-such as `&str`, `@str` or `~str`.
+such as `&str` or `~str`.
 
 ### Tuple types