remove confusing about lvalues term

This commit is contained in:
@ßd€łw@ħ@ß 2020-04-02 22:20:43 +01:00 committed by GitHub
parent 6eccce2cc8
commit 56918e52d1
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 values, or not yet assigned:
expressions must be mutable place, or not yet assigned:
```rust
# #![feature(llvm_asm)]