about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2020-04-03 03:26:52 +0200
committerGitHub <noreply@github.com>2020-04-03 03:26:52 +0200
commitc2372f109e2d9822349e4af109034da25cf4d72f (patch)
treeed2dfca8b4864cd60e4c61148b9ba82be29b1f2e
parent17f204feee7fe578930d56c231dad957c1b2d422 (diff)
parent56918e52d18cc37526c642493cc74835e62fa65d (diff)
downloadrust-c2372f109e2d9822349e4af109034da25cf4d72f.tar.gz
rust-c2372f109e2d9822349e4af109034da25cf4d72f.zip
Rollup merge of #70715 - awh6al:patch-1, r=Dylan-DPC
Fix typo 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..da01d9228f1 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 place, or not yet assigned:
 
 ```rust
 # #![feature(llvm_asm)]