Skip to content

Commit 1a07002

Browse files
committed
Fixed path after rebase
1 parent 1fd8606 commit 1a07002

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,3 +115,5 @@ tastydoc/report/presentation/presentation\.toc
115115
tastydoc/dotty-0\.15\.0-RC1/
116116

117117
tastydoc/report/presentation/presentation\.vrb
118+
119+
tastydoc/dotty-0\.16\.0-RC3/

project/Build.scala

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -421,14 +421,14 @@ object Build {
421421
libraryDependencies ++= {
422422
val flexmarkVersion = "0.28.32"
423423
Seq(
424-
// "com.vladsch.flexmark" % "flexmark" % flexmarkVersion,
425-
// "com.vladsch.flexmark" % "flexmark-ext-gfm-tasklist" % flexmarkVersion,
426-
// "com.vladsch.flexmark" % "flexmark-ext-gfm-tables" % flexmarkVersion,
427-
// "com.vladsch.flexmark" % "flexmark-ext-autolink" % flexmarkVersion,
428-
// "com.vladsch.flexmark" % "flexmark-ext-anchorlink" % flexmarkVersion,
429-
// "com.vladsch.flexmark" % "flexmark-ext-emoji" % flexmarkVersion,
430-
// "com.vladsch.flexmark" % "flexmark-ext-gfm-strikethrough" % flexmarkVersion,
431-
// "com.vladsch.flexmark" % "flexmark-ext-yaml-front-matter" % flexmarkVersion,
424+
"com.vladsch.flexmark" % "flexmark" % flexmarkVersion,
425+
"com.vladsch.flexmark" % "flexmark-ext-gfm-tasklist" % flexmarkVersion,
426+
"com.vladsch.flexmark" % "flexmark-ext-gfm-tables" % flexmarkVersion,
427+
"com.vladsch.flexmark" % "flexmark-ext-autolink" % flexmarkVersion,
428+
"com.vladsch.flexmark" % "flexmark-ext-anchorlink" % flexmarkVersion,
429+
"com.vladsch.flexmark" % "flexmark-ext-emoji" % flexmarkVersion,
430+
"com.vladsch.flexmark" % "flexmark-ext-gfm-strikethrough" % flexmarkVersion,
431+
"com.vladsch.flexmark" % "flexmark-ext-yaml-front-matter" % flexmarkVersion,
432432
Dependencies.`jackson-dataformat-yaml`,
433433
"nl.big-o" % "liqp" % "0.6.7"
434434
)

tastydoc/test/dotty/tastydoc/Tests.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Tests {
1717
@Test def testDocumentation(): Unit = {
1818
Main.main(Array(
1919
"--classpath",
20-
"tastydoc/out/bootstrap/dotty-tastydoc-input/scala-0.16/classes",
20+
"tastydoc/out/bootstrap/dotty-tastydoc-input/scala-0.17/classes",
2121
"--syntax",
2222
"wiki",
2323
//"markdown",
@@ -39,7 +39,7 @@ class Tests {
3939
@Test def testDotty(): Unit = {
4040
Main.main(Array(
4141
"--classpath",
42-
"tastydoc/dotty-0.15.0-RC1/lib",
42+
"tastydoc/dotty-0.16.0-RC3/lib",
4343
"--syntax",
4444
"wiki",
4545
"--packagestolink",

0 commit comments

Comments
 (0)