about summary refs log tree commit diff
diff options
context:
space:
mode:
author@ßd€łw@ħ@ß <awh6al@yandex.com>2020-04-02 20:30:46 +0100
committerGitHub <noreply@github.com>2020-04-02 20:30:46 +0100
commit6eccce2cc88bccb8898dac18d590ae71dae82235 (patch)
tree1c11b7ee5d803bd35c4f2fcf13cb1c76987c4c56
parent537ccdf3ac44c8c7a8d36cbdbe6fb224afabb7ae (diff)
downloadrust-6eccce2cc88bccb8898dac18d590ae71dae82235.tar.gz
rust-6eccce2cc88bccb8898dac18d590ae71dae82235.zip
fix type in operands section
-rw-r--r--src/doc/unstable-book/src/library-features/llvm-asm.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/unstable-book/src/library-features/llvm-asm.md b/src/doc/unstable-book/src/library-features/llvm-asm.md
index e07f716e567..8d4b288e50b 100644
--- a/src/doc/unstable-book/src/library-features/llvm-asm.md
+++ b/src/doc/unstable-book/src/library-features/llvm-asm.md
@@ -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)]