From e396b7a038e458de37ced6b59e0d367883bc3b71 Mon Sep 17 00:00:00 2001 From: Jon Pretty Date: Thu, 9 Nov 2017 09:24:18 +0000 Subject: Scaladoc corrections --- core/src/main/scala/interface.scala | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'core/src/main') diff --git a/core/src/main/scala/interface.scala b/core/src/main/scala/interface.scala index ed5fa37..ecc4379 100644 --- a/core/src/main/scala/interface.scala +++ b/core/src/main/scala/interface.scala @@ -39,7 +39,8 @@ trait Param[Typeclass[_], Type] { * case class Person(name: String, age: Int) * * the [[Param]] instance corresponding to the `age` parameter would have a [[PType]] equal to - * the type [[Int]]. However, in practice, this type will never be universally quantified. */ + * the type [[scala.Int]]. However, in practice, this type will never be universally quantified. + */ type PType /** the name of the parameter */ @@ -112,8 +113,8 @@ abstract class CaseClass[Typeclass[_], Type] private[magnolia]( /** a sequence of [[Param]] objects representing all of the parameters in the case class * - * For efficiency, this sequence is implemented by an `Array`, but upcast to a [[Seq]] to hide - * the mutable collection API. */ + * For efficiency, this sequence is implemented by an `Array`, but upcast to a + * [[scala.collection.Seq]] to hide the mutable collection API. */ def parameters: Seq[Param[Typeclass, Type]] = parametersArray } -- cgit v1.2.3