From d322056d3cd7281eab8b5aec24b200330a4f6c80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rcio=20Almada?= Date: Tue, 26 Jun 2018 08:34:04 -0300 Subject: [PATCH] fix `traverse` documentation --- src/parsers.php | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/parsers.php b/src/parsers.php index 14dde29..db36731 100644 --- a/src/parsers.php +++ b/src/parsers.php @@ -225,13 +225,16 @@ function isFallible() : bool * * * $parser = - * either + * repeat * ( - * , - * , - * , - * <...>, - * any() + * either + * ( + * , + * , + * , + * any() + * ) * ) * ; *