Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion crates/artifacts/solc/src/ast/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ where
#[serde(untagged)]
enum ExternalReferencesHelper {
Plain(Vec<ExternalInlineAssemblyReference>),
/// 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<BTreeMap<String, ExternalInlineAssemblyReference>>),
}
Expand Down
2 changes: 1 addition & 1 deletion crates/artifacts/solc/src/remappings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down