From 399349a114790f0bd8e133c150681d2a44681156 Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Fri, 23 Aug 2024 15:13:27 +0300 Subject: [PATCH 1/3] fix README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a41547720..0a0756ed0 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Originally part of [`ethers-rs`] as `ethers-solc`, Foundry Compilers is the compilation backend for [Foundry](https://github.com/foundry-rs/foundry). -[`ethers-rs`]'s `ethers-solc` is considered to be in maintenance mode, and any fixes to it will also be reflect on Foundry Compilers. No action is currently needed from devs, although we heavily recommend using Foundry Compilers instead of `ethers-solc`. +[`ethers-rs`]'s `ethers-solc` is considered to be in maintenance mode, and any fixes to it will also be reflected on Foundry Compilers. No action is currently needed from devs, although we heavily recommend using Foundry Compilers instead of `ethers-solc`. [`ethers-rs`]: https://github.com/gakonst/ethers-rs @@ -33,7 +33,7 @@ release. ## Contributing -Thanks for your help improving the project! We are so happy to have you! We have +Thanks for your help in improving the project! We are so happy to have you! We have [a contributing guide](./CONTRIBUTING.md) to help you get involved in the Foundry Compilers project. From 18e7a3d74deaf3a31f51aa0e13ecf6b5c77d32be Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Fri, 23 Aug 2024 15:17:09 +0300 Subject: [PATCH 2/3] fix utils.rs --- crates/artifacts/solc/src/ast/utils.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/artifacts/solc/src/ast/utils.rs b/crates/artifacts/solc/src/ast/utils.rs index 9e0eb34bb..8dd2a620f 100644 --- a/crates/artifacts/solc/src/ast/utils.rs +++ b/crates/artifacts/solc/src/ast/utils.rs @@ -12,7 +12,7 @@ where #[serde(untagged)] enum ExternalReferencesHelper { Plain(Vec), - /// Older solc versions produce external referrences as arrays of mappings {"variable" => + /// Older solc versions produce external references as arrays of mappings {"variable" => /// external reference object}, so we have to handle this. Map(Vec>), } From 10b1218e85cf40ed60fc32e985d36758faf72ecb Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Fri, 23 Aug 2024 15:29:14 +0300 Subject: [PATCH 3/3] fix remappings.rs --- crates/artifacts/solc/src/remappings.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/artifacts/solc/src/remappings.rs b/crates/artifacts/solc/src/remappings.rs index 6767cb56c..4b794e68c 100644 --- a/crates/artifacts/solc/src/remappings.rs +++ b/crates/artifacts/solc/src/remappings.rs @@ -413,7 +413,7 @@ impl RelativeRemappingPathBuf { &self.path } - /// Returns this path relative to the file it was delcared in, if any. + /// Returns this path relative to the file it was declared in, if any. /// Returns the original if this path was not declared in a file or if the /// path has a root. pub fn relative(&self) -> PathBuf {