about summary refs log tree commit diff
path: root/src/libcore/ops
diff options
context:
space:
mode:
authorBastien Orivel <eijebong@bananium.fr>2017-08-11 00:31:47 +0200
committerBastien Orivel <eijebong@bananium.fr>2017-08-11 00:31:47 +0200
commitea5be96bab45a68d5877acdfab88404df7376209 (patch)
tree6b35d3cfd960bf4961f435004b216aca38ae45c0 /src/libcore/ops
parent47cb3c5bc28e1bb2ac2d2efb7796ceb17b4ab7de (diff)
downloadrust-ea5be96bab45a68d5877acdfab88404df7376209.tar.gz
rust-ea5be96bab45a68d5877acdfab88404df7376209.zip
Fix some more typos, this time words that are duplicated.
Diffstat (limited to 'src/libcore/ops')
-rw-r--r--src/libcore/ops/unsize.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/ops/unsize.rs b/src/libcore/ops/unsize.rs
index 1914216e9f0..58da290cfb6 100644
--- a/src/libcore/ops/unsize.rs
+++ b/src/libcore/ops/unsize.rs
@@ -24,7 +24,7 @@ use marker::Unsize;
 /// Such an impl can only be written if `Foo<T>` has only a single non-phantomdata
 /// field involving `T`. If the type of that field is `Bar<T>`, an implementation
 /// of `CoerceUnsized<Bar<U>> for Bar<T>` must exist. The coercion will work by
-/// by coercing the `Bar<T>` field into `Bar<U>` and filling in the rest of the fields
+/// coercing the `Bar<T>` field into `Bar<U>` and filling in the rest of the fields
 /// from `Foo<T>` to create a `Foo<U>`. This will effectively drill down to a pointer
 /// field and coerce that.
 ///