We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 814059b commit 7b09e86Copy full SHA for 7b09e86
build.rs
@@ -50,7 +50,7 @@ fn main() {
50
println!("cargo:rerun-if-changed=build.rs");
51
52
53
- // Copy the binary blog required by the Flash API somewhere the linker can
+ // Copy the binary blob required by the Flash API somewhere the linker can
54
// find it, and tell Cargo to link it.
55
56
let blob_name = "flash";
@@ -61,7 +61,7 @@ fn main() {
61
&blob_path,
62
out.join(format!("{}", blob_file)),
63
)
64
- .expect("Failed to copy binary blog for Flash API");
+ .expect("Failed to copy binary blob for Flash API");
65
66
println!("cargo:rustc-link-lib=static={}", blob_name);
67
println!("cargo:rustc-link-search={}", out.display());
0 commit comments