From 8ea1795e5782e755f9573773a31845ba49464bfd Mon Sep 17 00:00:00 2001 From: Voronor <129545215+voronor@users.noreply.github.com> Date: Fri, 22 Nov 2024 14:13:59 +0100 Subject: [PATCH] Fix minor grammatical issue in project documentation This pull request addresses a minor grammatical issue in the project documentation regarding the description of the dependency resolution algorithm. --- crates/compilers/src/resolver/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/compilers/src/resolver/mod.rs b/crates/compilers/src/resolver/mod.rs index 5e892edc1..8f8e3ea29 100644 --- a/crates/compilers/src/resolver/mod.rs +++ b/crates/compilers/src/resolver/mod.rs @@ -10,7 +10,7 @@ //! compatible with, solidity version pragma. //! 2. A dependency can be imported from any directory, see `Remappings` //! -//! Finding all dependencies is fairly simple, we're simply doing a DFS, starting the source +//! Finding all dependencies is fairly simple, we're simply doing a DFS, starting from the source //! contracts //! //! ## Solc version auto-detection