From 99c0f91a4dd235824c353a11a2e75c462c9bbb74 Mon Sep 17 00:00:00 2001 From: Felix S Klock II Date: Thu, 4 Aug 2022 10:41:47 -0400 Subject: [PATCH] fix typo, thanks wesley Co-authored-by: Wesley Wiser --- .../issue-97463-abi-param-passing/param_passing.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/run-make-fulldeps/issue-97463-abi-param-passing/param_passing.rs b/src/test/run-make-fulldeps/issue-97463-abi-param-passing/param_passing.rs index b4744a3b96e7..c11f3cc72bdf 100644 --- a/src/test/run-make-fulldeps/issue-97463-abi-param-passing/param_passing.rs +++ b/src/test/run-make-fulldeps/issue-97463-abi-param-passing/param_passing.rs @@ -17,7 +17,7 @@ fn main() { let value: u16 = unsafe { c_read_value(r1 as u32, r2 as u32, r3 as u32) }; // NOTE: as an example of the sensitivity of this test to optimization choices, - // uncommenting this block of code makes the bug go away on pnkfeix's machine. + // uncommenting this block of code makes the bug go away on pnkfelix's machine. // (But observing via `dbg!` doesn't hide the bug. At least sometimes.) /* println!("{}", value);