Skip to content

Commit 786c0e3

Browse files
remove comment
1 parent 19a025b commit 786c0e3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/fuels-code-gen/src/utils/source.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,14 @@ impl Source {
6464

6565
/// Retrieves the source JSON of the artifact this will either read the JSON
6666
/// from the file system or retrieve a contract ABI from the network
67-
/// dependending on the source type.
67+
/// depending on the source type.
6868
pub fn get(&self) -> Result<String> {
6969
match self {
7070
Source::Local(path) => get_local_contract(path),
7171
Source::String(abi) => Ok(abi.clone()),
7272
}
7373
}
7474

75-
/// If the abigen is given a path, will return it here.
7675
pub fn path(&self) -> Option<PathBuf> {
7776
match self {
7877
Source::Local(path) => Some(path.clone()),

0 commit comments

Comments
 (0)