Skip to content

Commit

Permalink
fixed dangling zipped reference
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mie6 committed Apr 16, 2024
1 parent bc1e603 commit 8daf975
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions parsley/shared/src/main/scala/parsley/Parsley.scala
Original file line number Diff line number Diff line change
Expand Up @@ -993,13 +993,13 @@ object Parsley extends ParsleyImpl with PlatformSpecific {
* problem: a recursion point inside one of these strict fields
* will cause an infinite loop at runtime! This can be fixed by
* ensuring that this becomes part of a lazy argument. This is
* a solution described by the [[combinator.sequence `sequence`]]
* a solution described by the [[combinator$.sequence `sequence`]]
* combinator, for instance: `p <::> sequence(q, .., r)` will ensure
* that the `sequence` is in a lazy position in `<::>` meaning that
* even if any of `q` to `r` must be lazy, they can go in the strict
* positions of skip because the `p <::>` provides the required
* laziness. However, if this isn't possible (for instance, with
* the [[syntax.zipped `zipped`]] combinators), then how can
* the [[syntax.zipped$ `zipped`]] combinators), then how can
* this problem be solved?
*
* This is the job of the `~` combinator: very simply it wraps up
Expand Down

0 comments on commit 8daf975

Please sign in to comment.