about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorTakanori Ishibashi <takanori.1112@gmail.com>2018-05-15 21:59:30 +0900
committerWho? Me?! <mark-i-m@users.noreply.github.com>2018-05-15 10:15:16 -0500
commitbcb81eb491620d9d1daedf9746e70b1a94159c81 (patch)
tree6e128f08e786319a20699191448ecb5c682c4f03 /src/doc/rustc-dev-guide
parent18835fbc6b8a32699c1a937efe1b8dc3373cc001 (diff)
downloadrust-bcb81eb491620d9d1daedf9746e70b1a94159c81.tar.gz
rust-bcb81eb491620d9d1daedf9746e70b1a94159c81.zip
invokations -> invocations
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 ba807faf285..a90ad517ba4 100644
--- a/src/doc/rustc-dev-guide/src/macro-expansion.md
+++ b/src/doc/rustc-dev-guide/src/macro-expansion.md
@@ -2,7 +2,7 @@
 
 Macro expansion happens during parsing. `rustc` has two parsers, in fact: the
 normal Rust parser, and the macro parser. During the parsing phase, the normal
-Rust parser will set aside the contents of macros and their invokations. Later,
+Rust parser will set aside the contents of macros and their invocations. Later,
 before name resolution, macros are expanded using these portions of the code.
 The macro parser, in turn, may call the normal Rust parser when it needs to
 bind a metavariable (e.g.  `$my_expr`) while parsing the contents of a macro