From 583c55964b0003ffcc7bdfa9e6c802ca8eca0ead Mon Sep 17 00:00:00 2001 From: Wilfred Hughes Date: Thu, 15 Dec 2022 09:27:13 -0800 Subject: [PATCH] Fix typo --- build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.rs b/build.rs index 06fc17f93..ea87f3494 100644 --- a/build.rs +++ b/build.rs @@ -12,7 +12,7 @@ struct TreeSitterParser { extra_files: Vec<&'static str>, } -/// Emit linking flags for this library, but specifcy `+whole-archive`. +/// Emit linking flags for this library, but specify `+whole-archive`. /// /// This should be possible in the cc crate directly after /// https://github.com/rust-lang/cc-rs/pull/671