Skip to content

Commit 9e55c52

Browse files
authored
Fix minor grammatical issue in project documentation (#226)
### Description: This pull request addresses a minor grammatical issue in the project documentation regarding the description of the dependency resolution algorithm. Specifically, the following sentence: > Finding all dependencies is fairly simple, we're simply doing a DFS, starting the source contracts. #### Issue: The sentence is missing the preposition "from," making it grammatically incorrect and slightly harder to read. The corrected version is: > Finding all dependencies is fairly simple, we're simply doing a DFS, starting **from** the source contracts. #### Importance: While this is a small change, improving the grammar enhances the readability and professionalism of the documentation. Clear documentation is especially important for developers who rely on it to understand the dependency resolution logic and its implementation. #### Change Summary: - Added the preposition "from" to the sentence describing the DFS algorithm for finding dependencies. #### Before: > Finding all dependencies is fairly simple, we're simply doing a DFS, starting the source contracts. #### After: > Finding all dependencies is fairly simple, we're simply doing a DFS, starting **from** the source contracts. --- Thank you for maintaining this great project! Please let me know if additional changes are required. 😊
1 parent abc48e5 commit 9e55c52

File tree

1 file changed

+1
-1
lines changed
  • crates/compilers/src/resolver

1 file changed

+1
-1
lines changed

crates/compilers/src/resolver/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
//! compatible with, solidity version pragma.
1111
//! 2. A dependency can be imported from any directory, see `Remappings`
1212
//!
13-
//! Finding all dependencies is fairly simple, we're simply doing a DFS, starting the source
13+
//! Finding all dependencies is fairly simple, we're simply doing a DFS, starting from the source
1414
//! contracts
1515
//!
1616
//! ## Solc version auto-detection

0 commit comments

Comments
 (0)