summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorWho? Me?! <mark-i-m@users.noreply.github.com>2020-05-08 09:36:10 -0500
committerWho? Me?! <mark-i-m@users.noreply.github.com>2020-05-08 09:42:27 -0500
commit9c85446715893e9f87f922ce00701b232f3c53c5 (patch)
tree0e93fe5501897a1cd3e74913d78c8d1e46816e9e /src/doc/rustc-dev-guide
parentbf4e974ef4103c36ef73ffa37e02f7677864016d (diff)
downloadrust-9c85446715893e9f87f922ce00701b232f3c53c5.tar.gz
rust-9c85446715893e9f87f922ce00701b232f3c53c5.zip
Typo
Co-authored-by: Chris Simpkins <git.simpkins@gmail.com>
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/macro-expansion.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/macro-expansion.md b/src/doc/rustc-dev-guide/src/macro-expansion.md
index ea1240fc4a1..7961d0cf126 100644
--- a/src/doc/rustc-dev-guide/src/macro-expansion.md
+++ b/src/doc/rustc-dev-guide/src/macro-expansion.md
@@ -408,7 +408,7 @@ in [`rustc_span::hygiene`][hy].
 ## Producing Macro Output
 
 Above, we saw how the output of a macro is integrated into the AST for a crate,
-and we also saw how th e hygiene data for a crate is generated. But how do we
+and we also saw how the hygiene data for a crate is generated. But how do we
 actually produce the output of a macro? It depends on the type of macro.
 
 There are two types of macros in Rust: