Skip to content

Commit 1d326c5

Browse files
committed
Update comment in LazyListIterable
1 parent 558d143 commit 1d326c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/src/scala/collection/immutable/LazyListIterable.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ final class LazyListIterable[+A] private (lazyState: LazyListIterable.EmptyMarke
294294
// when `_head ne Uninitialized`
295295
// - `null` if this is an empty lazy list
296296
// - `tail: LazyListIterable[A]` otherwise
297-
private[this] var _tail: AnyRef^{this} | Null /* () => LazyListIterable[A] | MidEvaluation.type | LazyListIterable[A] */ =
297+
private[this] var _tail: AnyRef^{this} | Null /* () => LazyListIterable[A] | MidEvaluation.type | LazyListIterable[A] | Null */ =
298298
if (lazyState eq EmptyMarker) null else lazyState
299299

300300
private def rawHead: Any = _head

0 commit comments

Comments
 (0)