Skip to content

Commit 7436b53

Browse files
authored
Update output_selection.rs
1 parent a15a469 commit 7436b53

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

crates/artifacts/solc/src/output_selection.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ impl ContractOutputSelection {
201201
/// that solc emits.
202202
///
203203
/// These correspond to the fields in `CompactBytecode`, `CompactDeployedBytecode`, ABI, and
204-
/// method identfiers.
204+
/// method identifiers.
205205
pub fn basic() -> Vec<Self> {
206206
// We don't include all the `bytecode` fields because `generatedSources` is a massive JSON
207207
// object and is not used by Foundry.
@@ -610,7 +610,7 @@ mod tests {
610610
assert!(!output_selection.is_subset_of(&output_selection_empty));
611611
assert!(!output_selection_abi.is_subset_of(&output_selection_empty));
612612

613-
let output_selecttion_specific = OutputSelection::from(BTreeMap::from([(
613+
let output_selection_specific = OutputSelection::from(BTreeMap::from([(
614614
"Contract.sol".to_string(),
615615
BTreeMap::from([(
616616
"Contract".to_string(),
@@ -622,7 +622,7 @@ mod tests {
622622
)]),
623623
)]));
624624

625-
assert!(!output_selecttion_specific.is_subset_of(&output_selection));
625+
assert!(!output_selection_specific.is_subset_of(&output_selection));
626626
}
627627

628628
#[test]

0 commit comments

Comments
 (0)