Skip to content

Commit 18275ba

Browse files
Merge pull request #14769 from dotty-staging/remove-sytax-markdown
Remove `@syntax markdown` from `scala.quoted`
2 parents 21b572f + 6874cfd commit 18275ba

File tree

4 files changed

+0
-6
lines changed

4 files changed

+0
-6
lines changed

library/src/scala/quoted/Expr.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ object Expr {
4747
* ```
4848
*
4949
* To directly get the value of an expression `expr: Expr[T]` consider using `expr.value`/`expr.valueOrError` instead.
50-
* @syntax markdown
5150
*/
5251
def unapply[T](x: Expr[T])(using FromExpr[T])(using Quotes): Option[T] =
5352
scala.Predef.summon[FromExpr[T]].unapply(x)

library/src/scala/quoted/Quotes.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,6 @@ trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching =>
222222
*
223223
* ```
224224
*
225-
* @syntax markdown
226225
*/
227226
trait reflectModule { self: reflect.type =>
228227

library/src/scala/quoted/Type.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ object Type:
4141
* }
4242
* //}
4343
* ```
44-
* @syntax markdown
4544
*/
4645
def valueOfConstant[T](using Type[T])(using Quotes): Option[T] =
4746
ValueOf.unapply(quotes.reflect.TypeRepr.of[T]).asInstanceOf[Option[T]]
@@ -66,7 +65,6 @@ object Type:
6665
* }
6766
* //}
6867
* ```
69-
* @syntax markdown
7068
*/
7169
@since("3.1")
7270
def valueOfTuple[T <: Tuple](using Type[T])(using Quotes): Option[T] =

library/src/scala/quoted/Varargs.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ object Varargs {
2626
* }
2727
* //}
2828
* ```
29-
* @syntax markdown
3029
*/
3130
def apply[T](xs: Seq[Expr[T]])(using Type[T])(using Quotes): Expr[Seq[T]] = {
3231
import quotes.reflect._
@@ -49,7 +48,6 @@ object Varargs {
4948
* }
5049
* //}
5150
* ```
52-
* @syntax markdown
5351
*/
5452
def unapply[T](expr: Expr[Seq[T]])(using Quotes): Option[Seq[Expr[T]]] = {
5553
import quotes.reflect._

0 commit comments

Comments
 (0)