about summary refs log tree commit diff
path: root/src/libproc_macro
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/libproc_macro
parent47cb3c5bc28e1bb2ac2d2efb7796ceb17b4ab7de (diff)
downloadrust-ea5be96bab45a68d5877acdfab88404df7376209.tar.gz
rust-ea5be96bab45a68d5877acdfab88404df7376209.zip
Fix some more typos, this time words that are duplicated.
Diffstat (limited to 'src/libproc_macro')
-rw-r--r--src/libproc_macro/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libproc_macro/lib.rs b/src/libproc_macro/lib.rs
index 1bffffd6c9e..6a71e67676a 100644
--- a/src/libproc_macro/lib.rs
+++ b/src/libproc_macro/lib.rs
@@ -111,7 +111,7 @@ impl fmt::Display for TokenStream {
 
 /// `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 `$$`.