Skip to content

0.0.2

Latest
Compare
Choose a tag to compare
@ssanj ssanj released this 31 Oct 10:08
· 1 commit to master since this release

Fixes an issue where imports were added to the middle of a scaladoc block. This happened if the scaladoc block was the first block after a package definition.

package blah.de.blee

/** Some scaladoc
  * More doc
  * Still more doc
  */

When Scuggest added the first import, it was added on the 2nd line of the scaladoc:

package blah.de.blee

/** Some scaladoc
  * import someclass
  * More doc
  * Still more doc
  */

After the fix, imports are added before the scaladoc block:

package blah.de.blee

import someclass

/** Some scaladoc
  * More doc
  * Still more doc
  */