about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorYoungsuk Kim <joseph942010@gmail.com>2019-09-16 09:37:02 -0400
committerSantiago Pastorino <spastorino@gmail.com>2019-09-16 10:37:02 -0300
commit91ef424d2cd4e407940b13d48cff5a18f91e38ca (patch)
tree85e5a174f345544257388162f17c8b6474e67bff /src/doc/rustc-dev-guide
parentf3a4f1b44868cf3e911eaf53cd79162bebf9371f (diff)
downloadrust-91ef424d2cd4e407940b13d48cff5a18f91e38ca.tar.gz
rust-91ef424d2cd4e407940b13d48cff5a18f91e38ca.zip
typo fix (#444)
that would get compile to => that would get compiled to
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/mir/index.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/mir/index.md b/src/doc/rustc-dev-guide/src/mir/index.md
index 9e9f933fe81..da221a0d8b1 100644
--- a/src/doc/rustc-dev-guide/src/mir/index.md
+++ b/src/doc/rustc-dev-guide/src/mir/index.md
@@ -185,7 +185,7 @@ only reference places and constants. Moreover, when you use a place,
 we indicate whether we are **copying it** (which requires that the
 place have a type `T` where `T: Copy`) or **moving it** (which works
 for a place of any type). So, for example, if we had the expression `x
-= a + b + c` in Rust, that would get compile to two statements and a
+= a + b + c` in Rust, that would get compiled to two statements and a
 temporary:
 
 ```mir