From 158a5283d0eb2a5b4ab92ae1f9d47d0a8e2752b7 Mon Sep 17 00:00:00 2001 From: Kenny Kerr Date: Tue, 2 Apr 2024 11:51:03 -0500 Subject: [PATCH] Fix typo in `windows-targets` readme (#2962) --- crates/libs/targets/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/libs/targets/readme.md b/crates/libs/targets/readme.md index ff7c47b00d..356ef48835 100644 --- a/crates/libs/targets/readme.md +++ b/crates/libs/targets/readme.md @@ -13,7 +13,7 @@ Start by adding the following to your Cargo.toml file: version = "0.52" ``` -Use the `link`` macro to define the external functions you wish to call: +Use the `link` macro to define the external functions you wish to call: ```rust,no_run windows_targets::link!("kernel32.dll" "system" fn SetLastError(code: u32));