aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/src/main/scala/show.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/src/main/scala/show.scala b/examples/src/main/scala/show.scala
index a83c509..e101c11 100644
--- a/examples/src/main/scala/show.scala
+++ b/examples/src/main/scala/show.scala
@@ -10,12 +10,12 @@ import scala.language.experimental.macros
trait Show[Out, T] { def show(value: T): Out }
trait GenericShow[Out] {
-
+
/** the type constructor for new [[Show]] instances
*
* The first parameter is fixed as `String`, and the second parameter varies generically. */
type Typeclass[T] = Show[Out, T]
-
+
def join(typeName: String, strings: Seq[String]): Out
/** creates a new [[Show]] instance by labelling and joining (with `mkString`) the result of