summaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'src/main')
-rw-r--r--src/main/scala/Chisel/Core.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/scala/Chisel/Core.scala b/src/main/scala/Chisel/Core.scala
index adfc8f0d..76796374 100644
--- a/src/main/scala/Chisel/Core.scala
+++ b/src/main/scala/Chisel/Core.scala
@@ -766,7 +766,7 @@ sealed class SInt(dir: Direction, width: Width, lit: Option[SLit] = None) extend
def toType: Kind = SIntType(width, isFlip)
override def := (that: Data): Unit = that match {
- case _: SInt => this badConnect that
+ case _: SInt => this connect that
case _ => this badConnect that
}