From 6bdc69c618c599d61af6084dc9c3986cd66deb28 Mon Sep 17 00:00:00 2001 From: Herman Rimm Date: Sat, 14 Sep 2024 09:14:51 +0200 Subject: [PATCH] records: Fix match-record description. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ludovic Courtès --- guix/records.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guix/records.scm b/guix/records.scm index 23a79dbd43c6b1f047e37cb89d8193fe5e8e4365..82fe377e694de614962ddb3155af8cf6a5b6d441 100644 --- a/guix/records.scm +++ b/guix/records.scm @@ -665,7 +665,7 @@ to thunked values. Raise a syntax violation when the field is not found." (define-syntax match-record (syntax-rules () - "Bind each FIELD of a RECORD of the given TYPE to it's FIELD name. + "Bind each FIELD of a RECORD of the given TYPE to its FIELD name. The order in which fields appear does not matter. A syntax error is raised if an unknown field is queried." ((_ record type (fields ...) body ...)