From cc29ee21142bc023890ff78740c330d5cb3d54f2 Mon Sep 17 00:00:00 2001 From: Steven Sloboda Date: Tue, 29 Dec 2020 11:39:00 -0500 Subject: [PATCH] grpc-sys: fix typo in build script error messsage. Signed-off-by: Steven Sloboda --- grpc-sys/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grpc-sys/build.rs b/grpc-sys/build.rs index 9ea4472bf..4f900ad2f 100644 --- a/grpc-sys/build.rs +++ b/grpc-sys/build.rs @@ -289,7 +289,7 @@ fn bindgen_grpc(file_path: &PathBuf, grpc_include_dir: &PathBuf) { let mut file = fs::File::open(dent.path()).expect("couldn't open headers"); let mut buf = String::new(); file.read_to_string(&mut buf) - .expect("Coundn't read header content"); + .expect("Couldn't read header content"); if buf.contains("GRPCAPI") || buf.contains("GPRAPI") { headers.push(String::from(dent.path().to_str().unwrap())); }