about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTimothée Delabrouille <timothee.delabrouille@musicworldmedia.com>2021-04-09 12:39:35 +0200
committerTimothée Delabrouille <timothee.delabrouille@musicworldmedia.com>2021-04-09 12:39:35 +0200
commitd58a0de505a008af1998f1c5abbeb3fd75c6f76c (patch)
tree0a2d85b1a9c54e090e5d364a762b81c86611ca61
parentfab2d46d24b4c3328ebdf0ffecc8b67ad7990392 (diff)
downloadrust-d58a0de505a008af1998f1c5abbeb3fd75c6f76c.tar.gz
rust-d58a0de505a008af1998f1c5abbeb3fd75c6f76c.zip
conjugation
-rw-r--r--src/doc/unstable-book/src/library-features/asm.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/unstable-book/src/library-features/asm.md b/src/doc/unstable-book/src/library-features/asm.md
index 3edad008020..6895c323c29 100644
--- a/src/doc/unstable-book/src/library-features/asm.md
+++ b/src/doc/unstable-book/src/library-features/asm.md
@@ -376,7 +376,7 @@ unsafe {
 
 The compiler is allowed to instantiate multiple copies an `asm!` block, for example when the function containing it is inlined in multiple places. As a consequence, you should only use GNU assembler [local labels] inside inline assembly code. Defining symbols in assembly code may lead to assembler and/or linker errors due to duplicate symbol definitions.
 
-Moreover, due to [an llvm bug], you shouldn't use labels exclusively make of `0` and `1` digits, e.g. `0`, `11` or `101010`, as they may end up being interpreted as binary values.
+Moreover, due to [an llvm bug], you shouldn't use labels exclusively made of `0` and `1` digits, e.g. `0`, `11` or `101010`, as they may end up being interpreted as binary values.
 
 ```rust
 #![feature(asm)]