Skip to content

Commit 941dd50

Browse files
authored
Update compiler.rs
1 parent 7436b53 commit 941dd50

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/compilers/src/compilers/solc/compiler.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ impl Solc {
293293

294294
trace!("blocking installing solc version \"{}\"", version);
295295
crate::report::solc_installation_start(&version);
296-
// The async version `svm::install` is used instead of `svm::blocking_intsall`
296+
// The async version `svm::install` is used instead of `svm::blocking_install`
297297
// because the underlying `reqwest::blocking::Client` does not behave well
298298
// inside of a Tokio runtime. See: https://github.com/seanmonstar/reqwest/issues/1017
299299
match RuntimeOrHandle::new().block_on(svm::install(&version)) {
@@ -475,7 +475,7 @@ impl Solc {
475475
move |err| SolcError::io(err, &self.solc)
476476
}
477477

478-
/// Configures [Command] object depeending on settings and solc version used.
478+
/// Configures [Command] object depending on settings and solc version used.
479479
/// Some features are only supported by newer versions of solc, so we have to disable them for
480480
/// older ones.
481481
pub fn configure_cmd(&self) -> Command {

0 commit comments

Comments
 (0)