Skip to content

Commit f4dc75c

Browse files
committed
doc: change braces to () to avoid non-comp on 2.13.14
1 parent 6c07ae2 commit f4dc75c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/api-guide/state.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -175,11 +175,11 @@ def brackets = Brackets.empty.makeRef { bs =>
175175
def scope[A](p: Parsley[A]): Parsley[A] = bs.updateDuring(identity[Brackets])(p)
176176

177177
lazy val matching: Parsley[Unit] = scope {
178-
many {
178+
many(
179179
open('(') ~> matching <~ close(')')
180180
| open('[') ~> matching <~ close(']')
181181
| open('{') ~> matching <~ close('}')
182-
}.void
182+
).void
183183
}
184184
matching <~ eof
185185
}

0 commit comments

Comments
 (0)