From 345b9338d9b167f9f6b574269c8791d331199ea8 Mon Sep 17 00:00:00 2001 From: Jorge Luis Martinez Gomez Date: Tue, 15 Sep 2020 00:38:42 -0700 Subject: [PATCH] be more clear regarding labels and define_combinator --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 13d8190..2424ec0 100644 --- a/README.md +++ b/README.md @@ -102,8 +102,8 @@ between(lit("<"), lit(">"), lit("foo")).label ``` If we use `def` instead of `define_combinator`, then the label would be -that assigned by the outermost combinator. In the following case, it would -be that assigned by `<`. +that of its definition. In the following case, it would be that assigned by +`<`. ```ruby def between(left, right, p)