From 4efaf43ff35e62404f6b8255b23eaee49d49b3f8 Mon Sep 17 00:00:00 2001 From: Jorge Luis Martinez Gomez Date: Thu, 24 Sep 2020 22:48:36 -0700 Subject: [PATCH] simplify description --- lib/parsby/combinators.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/parsby/combinators.rb b/lib/parsby/combinators.rb index 5e9c59b..d90cb77 100644 --- a/lib/parsby/combinators.rb +++ b/lib/parsby/combinators.rb @@ -185,9 +185,8 @@ def splicer Parsby::Splicer end - # Accepts any number of strings or ranges optionally arbitrarily nested - # in arrays and parses a single char from the char options in the - # resulting joined string. + # Parses a single char from the char options provided as string and + # range arguments optionally arbitrarily nested in arrays. # # join(many(char_in('a'..'z', 0..9))).parse "foo23 bar" # #=> "foo23"