diff --git a/src/main/scala/util/PlusArg.scala b/src/main/scala/util/PlusArg.scala index 288362f4..fc74de73 100644 --- a/src/main/scala/util/PlusArg.scala +++ b/src/main/scala/util/PlusArg.scala @@ -9,7 +9,6 @@ class plusarg_reader(val format: String, val default: Int, val docstring: String val io = new Bundle { val out = UInt(OUTPUT, width = 32) } - } object PlusArg @@ -17,7 +16,7 @@ object PlusArg // PlusArg("foo") will return 42.U if the simulation is run with +foo=42 // Do not use this as an initial register value. The value is set in an // initial block and thus accessing it from another initial is racey. - // Add a docstring to document the arg, which can be dumped in elaboration + // Add a docstring to document the arg, which can be dumped in an elaboration // pass. def apply(name: String, default: Int = 0, docstring: String = ""): UInt =