Skip to content

Commit

Permalink
dart format
Browse files Browse the repository at this point in the history
  • Loading branch information
desmonddak committed Aug 7, 2024
1 parent e8fd111 commit 164a215
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/arithmetic/multiplier.dart
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ abstract class Multiplier extends Module {
/// [product] of the multiplication result.
Multiplier(Logic a, Logic b, {bool signed = false, super.name}) {
_signed = signed;
this.a = addInput('a', a, width: a.width);
this.a = addInput('a', a, width: a.width);
this.b = addInput('b', b, width: b.width);
}
}
Expand Down

0 comments on commit 164a215

Please sign in to comment.