From a18515b79bd90e7296451c7cc0bb08834c1b7aca Mon Sep 17 00:00:00 2001 From: Schuyler Eldridge Date: Mon, 30 Mar 2020 18:03:14 -0400 Subject: Java API Documents Linking (#1367) * Show linking against Javadoc Signed-off-by: Schuyler Eldridge * Add sbt-api-mappings plugin This adds the sbt-api-mappings plugin which enables auto-linking (properly setting the apiMappings for the sbt project) so that Scaldoc/unidoc generation will now automatically link against Java and Scala API docs (and use the right version). Signed-off-by: Schuyler Eldridge * Show linking against Scala APIs Signed-off-by: Schuyler Eldridge --- src/main/scala/chisel3/util/Bitwise.scala | 1 + 1 file changed, 1 insertion(+) (limited to 'src/main') diff --git a/src/main/scala/chisel3/util/Bitwise.scala b/src/main/scala/chisel3/util/Bitwise.scala index bbed5f07..4681b34a 100644 --- a/src/main/scala/chisel3/util/Bitwise.scala +++ b/src/main/scala/chisel3/util/Bitwise.scala @@ -61,6 +61,7 @@ object Fill { /** Create n repetitions of x using a tree fanout topology. * * Output data-equivalent to x ## x ## ... ## x (n repetitions). + * @throws java.lang.IllegalArgumentException if `n` is less than zero */ def apply(n: Int, x: UInt): UInt = { n match { -- cgit v1.2.3