Rollup merge of #70715 - awh6al:patch-1, r=Dylan-DPC

Fix typo in operands section
This commit is contained in:
Mazdak Farrokhzad 2020-04-03 03:26:52 +02:00 committed by GitHub
commit c2372f109e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -86,7 +86,7 @@ llvm_asm!("xor %eax, %eax" ::: "eax");
Input and output operands follow the same format: `:
"constraints1"(expr1), "constraints2"(expr2), ..."`. Output operand
expressions must be mutable lvalues, or not yet assigned:
expressions must be mutable place, or not yet assigned:
```rust
# #![feature(llvm_asm)]