From bd5710fb4cf3f132380bcde73c4383796d1f3609 Mon Sep 17 00:00:00 2001 From: RoomWithOutRoof <166608075+Jah-yee@users.noreply.github.com> Date: Sat, 27 Jun 2026 10:49:15 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20correct=20occured=E2=86=92occurred=20typ?= =?UTF-8?q?o=20in=20build.rs=20error=20message?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.rs b/build.rs index fd6e386..096c66f 100644 --- a/build.rs +++ b/build.rs @@ -13,7 +13,7 @@ fn main() -> Result<()> { .and_then(|emitter| emitter.emit()); if let Err(e) = gitcl_res { - eprintln!("error occured while generating instructions: {e:?}"); + eprintln!("error occurred while generating instructions: {e:?}"); Emitter::default().idempotent().fail_on_error().emit()?; }