aboutsummaryrefslogtreecommitdiff
path: root/dottydoc/jvm/src/dotty/tools/dottydoc/model/comment/CommentCooker.scala
blob: 4d4474d52853c4ba9f909aaa9671e48933b254d5 (plain) (blame)
1
2
3
4
5
6
7
8
package dotty.tools.dottydoc
package model
package comment

trait CommentCooker {
  trait Context
  def cook(comment: String)(implicit ctx: Context): String = ""
}