From 1326ded048315c9664c05242f846c0d44572fb2c Mon Sep 17 00:00:00 2001 From: sogaiu <983021772@users.noreply.github.com> Date: Sat, 25 Dec 2021 16:56:10 +0900 Subject: [PATCH] Tweak match docstring --- src/boot/boot.janet | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/boot/boot.janet b/src/boot/boot.janet index 96cca02d..06893e66 100644 --- a/src/boot/boot.janet +++ b/src/boot/boot.janet @@ -1676,8 +1676,8 @@ * symbol -- a pattern that is a symbol will match anything, binding `x`'s value to that symbol. - * array -- an array will match only if all of its elements match the - corresponding elements in `x`. + * array or bracket tuple -- an array or bracket tuple will match only if + all of its elements match the corresponding elements in `x`. * table or struct -- a table or struct will match if all values match with the corresponding values in `x`.