Skip to content

Commit c85c54f

Browse files
committed
Correct linking to source in scaladoc
1 parent 757fbab commit c85c54f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ import scala.xml.{Node => XmlNode, NodeSeq => XmlNodeSeq, _}
1212
//
1313

1414
val projectVersion = "0.3.2.1-SNAPSHOT"
15-
val versionTagDir = if (projectVersion.endsWith("SNAPSHOT")) "master" else "v" + projectVersion
15+
val versionTagDir = if (projectVersion.endsWith("SNAPSHOT")) "master" else "v." + projectVersion
1616
val _scalaVersions = Seq("2.13.0", "2.12.9")
17-
val _scalaVersion = _scalaVersions.head
17+
val _scalaVersion = _scalaVersions.head
1818

1919
crossScalaVersions := _scalaVersions
20-
scalaVersion := _scalaVersion
20+
scalaVersion := _scalaVersion
2121

2222
lazy val OSName = System.getProperty("os.name") match {
2323
case n if n.startsWith("Linux") => "linux"

0 commit comments

Comments
 (0)