]> git.lizzy.rs Git - rust.git/commitdiff
Fix some more typos, this time words that are duplicated.
authorBastien Orivel <eijebong@bananium.fr>
Thu, 10 Aug 2017 22:31:47 +0000 (00:31 +0200)
committerBastien Orivel <eijebong@bananium.fr>
Thu, 10 Aug 2017 22:31:47 +0000 (00:31 +0200)
src/libcore/ops/unsize.rs
src/libproc_macro/lib.rs
src/librustc_driver/driver.rs

index 1914216e9f08a97b78b36983db7444e4ef0989b6..58da290cfb694bb8bbb547c09fa90d7147c6bb07 100644 (file)
@@ -24,7 +24,7 @@
 /// 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.
 ///
index 1bffffd6c9e711834416617ad236917115386154..6a71e67676ae48a6abb364106b98e925d17358b0 100644 (file)
@@ -111,7 +111,7 @@ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
 
 /// `quote!(..)` accepts arbitrary tokens and expands into a `TokenStream` describing the input.
 /// For example, `quote!(a + b)` will produce a expression, that, when evaluated, constructs
-/// constructs the `TokenStream` `[Word("a"), Op('+', Alone), Word("b")]`.
+/// the `TokenStream` `[Word("a"), Op('+', Alone), Word("b")]`.
 ///
 /// Unquoting is done with `$`, and works by taking the single next ident as the unquoted term.
 /// To quote `$` itself, use `$$`.
index 22f98454f6c4a39f9038a5a84203812d703f2a30..eb233aa203ab4b30ba466f8e89a9ca4268f1ff3f 100644 (file)
@@ -282,7 +282,7 @@ pub fn source_name(input: &Input) -> String {
 /// This is a somewhat higher level controller than a Session - the Session
 /// controls what happens in each phase, whereas the CompileController controls
 /// whether a phase is run at all and whether other code (from outside the
-/// the compiler) is run between phases.
+/// compiler) is run between phases.
 ///
 /// Note that if compilation is set to stop and a callback is provided for a
 /// given entry point, the callback is called before compilation is stopped.