From 1d107ee439c6478099e9e8dc22b8d506cf9dc827 Mon Sep 17 00:00:00 2001 From: luohewuyang Date: Mon, 22 Dec 2025 11:07:03 +0800 Subject: [PATCH] Fix minor typos and comment formatting in changelog and test files Signed-off-by: luohewuyang --- src/changelog.rs | 2 +- tests/functions.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/changelog.rs b/src/changelog.rs index bcf30294b..af2471868 100644 --- a/src/changelog.rs +++ b/src/changelog.rs @@ -75,7 +75,7 @@ pub mod r0_8_3 {} /// ## (Potentially) breaking changes /// /// MSRV has been increased to 1.56.0. Since both rustc versions are ancient, this has been deemed -/// to not be breaking enough to warrant a semver-breaking release of libloading. If you're stick +/// to not be breaking enough to warrant a semver-breaking release of libloading. If you're stuck /// with a version of rustc older than 1.56.0, lock `libloading` dependency to `0.8.1`. /// /// ## Non-breaking changes diff --git a/tests/functions.rs b/tests/functions.rs index 6f4fc2755..8bd2859d1 100644 --- a/tests/functions.rs +++ b/tests/functions.rs @@ -17,7 +17,7 @@ fn make_helpers() { static ONCE: ::std::sync::Once = ::std::sync::Once::new(); ONCE.call_once(|| { if std::env::var_os("PRECOMPILED_TEST_HELPER").is_some() { - //I can't be asked to make rustc work in wine. + // I can't be asked to make rustc work in wine. //I can call it myself from my linux host and then just move the file here this allows me to skip this. eprintln!("WILL NOT COMPILE TEST HELPERS, PROGRAM WILL ASSUME THAT {} EXISTS AND WAS EXTERNALLY PRE COMPILED", lib_path().display()); return;