From 164a21521ca6ce97fcd75e7b9ed6191d291c5119 Mon Sep 17 00:00:00 2001 From: "Desmond A. Kirkpatrick" Date: Wed, 7 Aug 2024 10:44:42 -0700 Subject: [PATCH] dart format --- lib/src/arithmetic/multiplier.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/arithmetic/multiplier.dart b/lib/src/arithmetic/multiplier.dart index 61d9755b..7e7a15bf 100644 --- a/lib/src/arithmetic/multiplier.dart +++ b/lib/src/arithmetic/multiplier.dart @@ -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); } }