about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYuki Okushi <jtitor@2k36.org>2021-08-03 19:07:49 +0900
committerGitHub <noreply@github.com>2021-08-03 19:07:49 +0900
commitb70c9dd77cc80088ad0316eb82537c2e4d918b90 (patch)
tree84a1bedce4e146db4d868923f1976ccdc472b232
parent423a930c9a60ffd365f4766080d662d66f18f996 (diff)
parentc2a809c2c5a3416f719ad998af61367fcc69ff16 (diff)
downloadrust-b70c9dd77cc80088ad0316eb82537c2e4d918b90.tar.gz
rust-b70c9dd77cc80088ad0316eb82537c2e4d918b90.zip
Rollup merge of #87711 - noproto:patch-1, r=GuillaumeGomez
Correct typo
-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 e950891ef92..8ff600d5334 100644
--- a/src/doc/unstable-book/src/library-features/asm.md
+++ b/src/doc/unstable-book/src/library-features/asm.md
@@ -402,7 +402,7 @@ assert_eq!(a, 5);
 
 This will decrement the `{0}` register value from 10 to 3, then add 2 and store it in `a`.
 
-This example show a few thing:
+This example shows a few things:
 
 First that the same number can be used as a label multiple times in the same inline block.