Skip to content

Commit

Permalink
Fix missing references in readme site.
Browse files Browse the repository at this point in the history
  • Loading branch information
olafurpg committed Jun 30, 2017
1 parent e7527f1 commit b2567f3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions readme/Installation.scalatex
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
The sbt-plugin is the recommended integration for semantic rewrites.

@hl.scala
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "@V.stable")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "@V.stableVersion")

@ul
@li
Expand All @@ -31,7 +31,7 @@
@sect{scalafix-core}
Scalafix can be used as a library to run custom rewrites.
@hl.scala
libraryDependencies += "ch.epfl.scala" % "scalafix-core" % "@V.stable" cross CrossVersion.full
libraryDependencies += "ch.epfl.scala" % "scalafix-core" % "@V.stableVersion" cross CrossVersion.full


By using scalafix as a library, you have full control of how/when/where
Expand Down Expand Up @@ -64,7 +64,7 @@

@hl.scala
// coursier
coursier bootstrap ch.epfl.scala:scalafix-cli_@(V.scalaVersion):@(V.stable) -f --main scalafix.cli.Cli -o scalafix
coursier bootstrap ch.epfl.scala:scalafix-cli_@(V.scalaVersion):@(V.stableVersion) -f --main scalafix.cli.Cli -o scalafix
./scalafix --help

// homebrew
Expand Down
2 changes: 1 addition & 1 deletion readme/Testkit.scalatex
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
lazy val tests = project
.in(file("scalafix/tests"))
.settings(
libraryDependencies += "ch.epfl.scala" % "scalafix-testkit" % "@V.stable" % Test cross CrossVersion.full,
libraryDependencies += "ch.epfl.scala" % "scalafix-testkit" % "@V.stableVersion" % Test cross CrossVersion.full,
buildInfoPackage := "myproject.scalafix.tests",
buildInfoKeys := Seq[BuildInfoKey](
"inputSourceroot" ->
Expand Down
2 changes: 1 addition & 1 deletion readme/src/main/scala/scalafix/Readme.scala
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ object Readme {
highlight.scala(str)
}
def githubSyntax(path: String) =
reflect.ScalafixReflect.GitHubUrlRewrite
internal.reflect.ScalafixCompilerDecoder.GitHubUrlRewrite
.unapply(Conf.Str(s"github:$path"))
.get
}

0 comments on commit b2567f3

Please sign in to comment.