Skip to content

Commit

Permalink
fixup: Accidentally a word
Browse files Browse the repository at this point in the history
  • Loading branch information
Xanewok committed Sep 20, 2023
1 parent 610a825 commit a894bef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/solidity/outputs/cargo/build/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ fn main() -> Result<()> {
rerun_if_changed!(crate_dir.join("Cargo.toml").unwrap_str());
rerun_if_changed!(crate_dir.join("src").unwrap_str());
// Emitting the `rerun-if-changed` for non-existent files always causes a rebuild, so first check if a build
// script event exists. It's worth noting that adding/removing one will trip up
// script event exists. It's worth noting that adding/removing one will trip this up.
if crate_dir.join("build.rs").exists() {
rerun_if_changed!(crate_dir.join("build.rs").unwrap_str());
}
Expand Down
2 changes: 1 addition & 1 deletion crates/solidity/outputs/npm/build/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ fn main() -> Result<()> {
rerun_if_changed!(crate_dir.join("Cargo.toml").unwrap_str());
rerun_if_changed!(crate_dir.join("src").unwrap_str());
// Emitting the `rerun-if-changed` for non-existent files always causes a rebuild, so first check if a build
// script event exists. It's worth noting that adding/removing one will trip up
// script event exists. It's worth noting that adding/removing one will trip this up.
if crate_dir.join("build.rs").exists() {
rerun_if_changed!(crate_dir.join("build.rs").unwrap_str());
}
Expand Down

0 comments on commit a894bef

Please sign in to comment.