From 51bec23c9cd2596dd99b2d1dad36d9ac2a51f12b Mon Sep 17 00:00:00 2001 From: Tshepang Mbambo Date: Sat, 18 Apr 2026 23:31:43 +0200 Subject: [PATCH] improve readability --- src/patterns.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/patterns.md b/src/patterns.md index f30d9d73d0..a40f782eaf 100644 --- a/src/patterns.md +++ b/src/patterns.md @@ -365,7 +365,7 @@ r[patterns.wildcard.intro] The _wildcard pattern_ (an underscore symbol) matches any value. It is used to ignore values when they don't matter. r[patterns.wildcard.struct-matcher] -Inside other patterns it matches a single data field (as opposed to the `..` which matches the remaining fields). +Inside other patterns, it matches a single data field (as opposed to the `..`, which matches the remaining fields). r[patterns.wildcard.no-binding] Unlike identifier patterns, it does not copy, move or borrow the value it matches.