that would get compile to => that would get compiled to
This commit is contained in:
Youngsuk Kim 2019-09-16 09:37:02 -04:00 committed by Santiago Pastorino
parent 710b25a18e
commit 2e15dbd1f5
1 changed files with 1 additions and 1 deletions

View File

@ -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