about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2016-07-16 11:13:29 +0200
committerGitHub <noreply@github.com>2016-07-16 11:13:29 +0200
commit29ca456dfce27667341f4f26eec2b4efd13ffa17 (patch)
tree4f725437d543c2ea0e65ba1a8419793a978c4e7b /src
parentc4788c26ad7dc65244a9efc50526609c4c71cfb9 (diff)
downloadrust-29ca456dfce27667341f4f26eec2b4efd13ffa17.tar.gz
rust-29ca456dfce27667341f4f26eec2b4efd13ffa17.zip
doc: remove extraneous word
Diffstat (limited to 'src')
-rw-r--r--src/doc/nomicon/phantom-data.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/nomicon/phantom-data.md b/src/doc/nomicon/phantom-data.md
index 0d7ec7f1617..4843cd420df 100644
--- a/src/doc/nomicon/phantom-data.md
+++ b/src/doc/nomicon/phantom-data.md
@@ -51,7 +51,7 @@ struct Vec<T> {
 ```
 
 Unlike the previous example it *appears* that everything is exactly as we
-want. Every generic argument to Vec shows up in the at least one field.
+want. Every generic argument to Vec shows up in at least one field.
 Good to go!
 
 Nope.