Skip to content

Commit

Permalink
Merge pull request #139 from danicheg/tweak-installation-page
Browse files Browse the repository at this point in the history
Reverse the order of supported Scala versions on the site
  • Loading branch information
danicheg authored Sep 8, 2024
2 parents c4726c2 + 08171ed commit 997c8a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs-gen/src/main/scala/ch/epfl/scala/profiling/Docs.scala
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ object Docs {
def prepareVersions(prefix: String): Seq[String] => String =
_.sortWith {
case (l, r) =>
l.replaceFirst(prefix + ".", "").toInt <=
l.replaceFirst(prefix + ".", "").toInt >=
r.replaceFirst(prefix + ".", "").toInt
}.mkString(", ")

Expand Down

0 comments on commit 997c8a1

Please sign in to comment.