Skip to content

Commit 7b09e86

Browse files
committed
Fix typo in build.rs: blog -> blob
1 parent 814059b commit 7b09e86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ fn main() {
5050
println!("cargo:rerun-if-changed=build.rs");
5151

5252

53-
// Copy the binary blog required by the Flash API somewhere the linker can
53+
// Copy the binary blob required by the Flash API somewhere the linker can
5454
// find it, and tell Cargo to link it.
5555

5656
let blob_name = "flash";
@@ -61,7 +61,7 @@ fn main() {
6161
&blob_path,
6262
out.join(format!("{}", blob_file)),
6363
)
64-
.expect("Failed to copy binary blog for Flash API");
64+
.expect("Failed to copy binary blob for Flash API");
6565

6666
println!("cargo:rustc-link-lib=static={}", blob_name);
6767
println!("cargo:rustc-link-search={}", out.display());

0 commit comments

Comments
 (0)