about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2016-07-16 16:55:59 +0200
committerGitHub <noreply@github.com>2016-07-16 16:55:59 +0200
commit45f8427d47f6ac4ae2f661fde47be0da3efc6a4b (patch)
tree4c053e4c63edf56db26aa0bd6f5d04d99171442b
parent9d622d9e7eb5cf23e7aee77d6ab358a026d77091 (diff)
parent29ca456dfce27667341f4f26eec2b4efd13ffa17 (diff)
downloadrust-45f8427d47f6ac4ae2f661fde47be0da3efc6a4b.tar.gz
rust-45f8427d47f6ac4ae2f661fde47be0da3efc6a4b.zip
Rollup merge of #34849 - tshepang:patch-2, r=apasel422
doc: remove extraneous word
-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 fff8ca752b0..d565532017a 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.