Skip to content

Commit 49b3cc9

Browse files
authored
Update mod.rs
1 parent 47558a2 commit 49b3cc9

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

crates/compilers/src/artifact_output/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ impl<T> Artifacts<T> {
377377
})
378378
}
379379

380-
/// Finds the artifact with matching path and name
380+
/// Finds the artifact with a matching path and name
381381
pub fn find(&self, contract_path: &Path, contract_name: &str) -> Option<&T> {
382382
self.0.iter().filter(|(path, _)| path.as_path() == contract_path).find_map(
383383
|(_file, contracts)| {

0 commit comments

Comments
 (0)