Further renaming of length to width
[Mograsim.git] / net.mograsim.logic.core / src / net / mograsim / logic / core / types / Bit.java
index da7b8c9..e627810 100644 (file)
@@ -69,9 +69,9 @@ public enum Bit implements StrictLogicType<Bit>
                return bits;
        }
 
-       public BitVector toVector(int length)
+       public BitVector toVector(int width)
        {
-               return BitVector.of(this, length);
+               return BitVector.of(this, width);
        }
 
        @Override