From 379433a0259eb63dc2a271bb792266d586aab945 Mon Sep 17 00:00:00 2001 From: noproto Date: Mon, 2 Aug 2021 20:51:32 -0400 Subject: [PATCH 1/2] Correct typo --- src/doc/unstable-book/src/library-features/asm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/unstable-book/src/library-features/asm.md b/src/doc/unstable-book/src/library-features/asm.md index e950891ef92bd..eb08b5ad1e548 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 thing: First that the same number can be used as a label multiple times in the same inline block. From c2a809c2c5a3416f719ad998af61367fcc69ff16 Mon Sep 17 00:00:00 2001 From: noproto Date: Mon, 2 Aug 2021 20:55:25 -0400 Subject: [PATCH 2/2] Another one --- src/doc/unstable-book/src/library-features/asm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/unstable-book/src/library-features/asm.md b/src/doc/unstable-book/src/library-features/asm.md index eb08b5ad1e548..8ff600d5334fd 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 shows 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.