fix type in operands section

This commit is contained in:
@ßd€łw@ħ@ß 2020-04-02 20:30:46 +01:00 committed by GitHub
parent 537ccdf3ac
commit 6eccce2cc8
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 values, or not yet assigned:
```rust
# #![feature(llvm_asm)]