From 72a27db89df304ce435e4ed8ce854a57a8c94408 Mon Sep 17 00:00:00 2001 From: "Paulo \"JCranky\" Siqueira" Date: Tue, 2 Jan 2018 13:08:19 +0100 Subject: [PATCH] Minor scaladoc fix for ::: (#2134) --- core/src/main/scala/cats/data/NonEmptyList.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/scala/cats/data/NonEmptyList.scala b/core/src/main/scala/cats/data/NonEmptyList.scala index 36620690b8..2e68720342 100644 --- a/core/src/main/scala/cats/data/NonEmptyList.scala +++ b/core/src/main/scala/cats/data/NonEmptyList.scala @@ -101,7 +101,7 @@ final case class NonEmptyList[+A](head: A, tail: List[A]) { NonEmptyList(a, head :: tail) /** - * Alias for concat + * Alias for concatNel * * {{{ * scala> import cats.data.NonEmptyList