From 21645c507e0853b263dc734ae85027b6eab40767 Mon Sep 17 00:00:00 2001 From: danielsanchezq Date: Tue, 27 Sep 2022 12:20:20 +0200 Subject: [PATCH] Fix typo in error message --- waku-sys/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/waku-sys/build.rs b/waku-sys/build.rs index 66f7ab8..b43df15 100644 --- a/waku-sys/build.rs +++ b/waku-sys/build.rs @@ -8,7 +8,7 @@ fn get_go_bin() -> String { Command::new("/usr/bin/which") .arg("go") .output() - .map_err(|e| println!("cargo:warning=Coudling find which command: {}", e)) + .map_err(|e| println!("cargo:warning=Couldn't find `which` command: {}", e)) .expect("`which` command not found") .stdout, )