Skip to content

Commit 5e6b46e

Browse files
committed
fixup! fixup! fixup! Stop old #:: from being called
formatting
1 parent df8778e commit 5e6b46e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

core/src/main/scala-2.13+/cats/data/NonEmptyLazyList.scala

+1
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ object NonEmptyLazyList extends NonEmptyLazyListInstances {
112112
}
113113

114114
final class Deferrer[A] private[NonEmptyLazyList] (private val nell: () => NonEmptyLazyList[A]) extends AnyVal {
115+
115116
/** Prepends a single element. */
116117
def #::[AA >: A](elem: => AA): NonEmptyLazyList[AA] =
117118
create(elem #:: nell().toLazyList)

0 commit comments

Comments
 (0)