diff --git a/crates/zksync/compilers/src/artifacts/contract.rs b/crates/zksync/compilers/src/artifacts/contract.rs index 7ec459da9..3b9be91ca 100644 --- a/crates/zksync/compilers/src/artifacts/contract.rs +++ b/crates/zksync/compilers/src/artifacts/contract.rs @@ -90,7 +90,7 @@ impl Contract { // CompactContract variants // TODO: for zkEvm, the distinction between bytecode and deployed_bytecode makes little sense, -// and there some fields that the ouptut doesn't provide (e.g: source_map) +// and there some fields that the output doesn't provide (e.g: source_map) // However, we implement these because we get the Artifact trait and can reuse lots of // the crate's helpers without needing to duplicate everything. Maybe there's a way // we can get all these without having to add the same bytecode twice on each struct. diff --git a/crates/zksync/compilers/src/compilers/artifact_output/zk.rs b/crates/zksync/compilers/src/compilers/artifact_output/zk.rs index 58409e44f..0ece4b670 100644 --- a/crates/zksync/compilers/src/compilers/artifact_output/zk.rs +++ b/crates/zksync/compilers/src/compilers/artifact_output/zk.rs @@ -63,7 +63,7 @@ impl ZkContractArtifact { // CompactContract variants // TODO: for zkEvm, the distinction between bytecode and deployed_bytecode makes little sense, -// and there some fields that the ouptut doesn't provide (e.g: source_map) +// and there some fields that the output doesn't provide (e.g: source_map) // However, we implement these because we get the Artifact trait and can reuse lots of // the crate's helpers without needing to duplicate everything. Maybe there's a way // we can get all these without having to add the same bytecode twice on each struct. diff --git a/crates/zksync/compilers/src/compilers/zksolc/mod.rs b/crates/zksync/compilers/src/compilers/zksolc/mod.rs index 368b8f70e..203a0fd45 100644 --- a/crates/zksync/compilers/src/compilers/zksolc/mod.rs +++ b/crates/zksync/compilers/src/compilers/zksolc/mod.rs @@ -653,7 +653,7 @@ fn compiler_blocking_install( let _lock = try_lock_file(lock_path)?; trace!("got lock for {label}"); - // Only write to file if it is not there. The check is doneafter adquiring the lock + // Only write to file if it is not there. The check is done after acquiring the lock // to ensure the thread remains blocked until the required compiler is // fully installed if !compiler_path.exists() { @@ -679,7 +679,7 @@ fn compiler_blocking_install( response.status() ))); } - trace!("{label} instalation completed"); + trace!("{label} installation completed"); Ok(compiler_path) }) }