File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
reference/metaprogramming Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -105,4 +105,4 @@ These map the transformed trees to Java classfiles or SJSIR files.
105105[ patternMatcher ] : https://github.com/lampepfl/dotty/blob/master/compiler/src/dotty/tools/dotc/transform/PatternMatcher.scala
106106[ erasure ] : https://github.com/lampepfl/dotty/blob/master/compiler/src/dotty/tools/dotc/transform/Erasure.scala
107107[ Mirror ] : https://github.com/lampepfl/dotty/blob/master/library/src/scala/deriving/Mirror.scala
108- [ PCP] : {{ site.scala3ref }}/ metaprogramming/macros.html #the-phase-consistency-principle
108+ [ PCP ] : ../../reference/ metaprogramming/macros.md #the-phase-consistency-principle
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ The main development discussion channels are:
134134[ java8 ] : https://www.oracle.com/java/technologies/javase-jdk8-downloads.html
135135[ java11 ] : https://www.oracle.com/java/technologies/javase-jdk11-downloads.html
136136[ adopt ] : https://adoptopenjdk.net/
137- [ compat ] : /overviews/jdk-compatibility/overview.html
137+ [ compat ] : https://docs.scala-lang.org /overviews/jdk-compatibility/overview.html
138138[ scala-cla ] : https://www.lightbend.com/contribute/cla/scala
139139[ dotty-issue ] : https://github.com/lampepfl/dotty/issues
140140[ dotty-discussion ] : https://github.com/lampepfl/dotty/discussions
Original file line number Diff line number Diff line change @@ -19,9 +19,9 @@ if you notice anything out of date, or report any issues
1919### Get the Most from This Guide
2020
2121` dotc ` is built with Scala 3, fully utilising its [ new
22- features] ( /scala3/new-in-scala3.html ) . It is recommended that you first have
22+ features] ( https://docs.scala-lang.org /scala3/new-in-scala3.html) . It is recommended that you first have
2323some familiarity with Scala 3 to get the most out of this guide. You can learn
24- more in the [ language reference] ({{ site.scala3ref }} ).
24+ more in the [ language reference] ( ../reference/overview.md ) .
2525
2626Many code snippets in this guide make use of shell commands (a line beginning
2727with ` $ ` ), and in this case a ` bash ` compatible shell is assumed. You may have
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ Quotes define all the `Expr[T]` methods as extension methods.
134134` Type[T] ` does not have methods and therefore does not appear here.
135135These methods are available as long as ` Quotes ` is implicitly given in the current scope.
136136
137- The ` Quotes ` instance is also the entry point to the [ reflection API] ( ./refelction .md ) through the ` reflect ` object.
137+ The ` Quotes ` instance is also the entry point to the [ reflection API] ( ./reflection .md ) through the ` reflect ` object.
138138
139139Finally, ` Quotes ` provides the internal logic used in quote un-pickling (` QuoteUnpickler ` ) in quote pattern matching (` QuoteMatching ` ).
140140These interfaces are added to the self-type of the trait to make sure they are implemented on this object but not visible to users of ` Quotes ` .
You can’t perform that action at this time.
0 commit comments