From ab0970581f245734161aa3952a0794dbe1a6b114 Mon Sep 17 00:00:00 2001 From: Daniel Scherzer Date: Mon, 26 Jan 2026 01:50:23 -0800 Subject: [PATCH] inline-assembly: add a space to the `asm.abi-clobbers.many` example --- src/inline-assembly.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/inline-assembly.md b/src/inline-assembly.md index e47539ceba..775d5dfbd3 100644 --- a/src/inline-assembly.md +++ b/src/inline-assembly.md @@ -960,7 +960,7 @@ r[asm.abi-clobbers.many] ```rust # #[cfg(target_arch = "x86_64")] { extern "sysv64" fn foo() -> i32 { 0 } -extern "win64" fn bar(x: i32) -> i32 { x + 1} +extern "win64" fn bar(x: i32) -> i32 { x + 1 } let z: i32; // We can even call multiple functions with different conventions and