You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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. 😊
0 commit comments