Skip to content

Commit d7a4b87

Browse files
authored
Docs fix spelling issues (#190)
Hello I found and fixed several spelling issues. Br, Elias.
1 parent 3f08085 commit d7a4b87

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
Originally part of [`ethers-rs`] as `ethers-solc`, Foundry Compilers is the compilation backend for [Foundry](https://github.com/foundry-rs/foundry).
55

6-
[`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`.
6+
[`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`.
77

88
[`ethers-rs`]: https://github.com/gakonst/ethers-rs
99

@@ -33,7 +33,7 @@ release.
3333

3434
## Contributing
3535

36-
Thanks for your help improving the project! We are so happy to have you! We have
36+
Thanks for your help in improving the project! We are so happy to have you! We have
3737
[a contributing guide](./CONTRIBUTING.md) to help you get involved in the
3838
Foundry Compilers project.
3939

crates/artifacts/solc/src/ast/utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ where
1212
#[serde(untagged)]
1313
enum ExternalReferencesHelper {
1414
Plain(Vec<ExternalInlineAssemblyReference>),
15-
/// Older solc versions produce external referrences as arrays of mappings {"variable" =>
15+
/// Older solc versions produce external references as arrays of mappings {"variable" =>
1616
/// external reference object}, so we have to handle this.
1717
Map(Vec<BTreeMap<String, ExternalInlineAssemblyReference>>),
1818
}

crates/artifacts/solc/src/remappings.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ impl RelativeRemappingPathBuf {
413413
&self.path
414414
}
415415

416-
/// Returns this path relative to the file it was delcared in, if any.
416+
/// Returns this path relative to the file it was declared in, if any.
417417
/// Returns the original if this path was not declared in a file or if the
418418
/// path has a root.
419419
pub fn relative(&self) -> PathBuf {

0 commit comments

Comments
 (0)