summary refs log tree commit diff
path: root/src/doc/reference.md
diff options
context:
space:
mode:
authorEduard Burtescu <edy.burt@gmail.com>2014-10-01 01:45:17 +0300
committerEduard Burtescu <edy.burt@gmail.com>2014-10-02 16:59:31 +0300
commitaa0b350c9798ca1ca1b0b82aec66f7ee2bac76ff (patch)
tree1197d597ba3ecd0f4d9654f7a3c7fbc4d4f8bd15 /src/doc/reference.md
parent39de8464ed16e00c716faff2782fef6babbb090b (diff)
downloadrust-aa0b350c9798ca1ca1b0b82aec66f7ee2bac76ff.tar.gz
rust-aa0b350c9798ca1ca1b0b82aec66f7ee2bac76ff.zip
docs: remove mentions of Gc.
Diffstat (limited to 'src/doc/reference.md')
-rw-r--r--src/doc/reference.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md
index c3b61f6435c..ecd583937f4 100644
--- a/src/doc/reference.md
+++ b/src/doc/reference.md
@@ -3381,7 +3381,7 @@ fn main() {
 
 ```
 
-Patterns can also dereference pointers by using the `&`, `box` or `@` symbols,
+Patterns can also dereference pointers by using the `&`, `box` symbols,
 as appropriate. For example, these two matches on `x: &int` are equivalent:
 
 ```