aboutsummaryrefslogtreecommitdiff
path: root/guix/records.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2023-06-09 14:00:51 +0200
committerLudovic Courtès <ludo@gnu.org>2023-06-09 14:19:14 +0200
commit1c9e992e8c636ce8798c26fa1c8f744fbe17255e (patch)
treea749628bd228c145839135448f6020b03c454a0f /guix/records.scm
parent56ad923f47d352e1bee1a94da1a246ae21c03569 (diff)
downloadguix-1c9e992e8c636ce8798c26fa1c8f744fbe17255e.tar
guix-1c9e992e8c636ce8798c26fa1c8f744fbe17255e.tar.gz
records: Remove "guix" from error message.
* guix/records.scm (map-fields): Tweak error message.
Diffstat (limited to 'guix/records.scm')
-rw-r--r--guix/records.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/records.scm b/guix/records.scm
index 5af3e780a0..f4d12a861d 100644
--- a/guix/records.scm
+++ b/guix/records.scm
@@ -110,7 +110,7 @@ error-reporting purposes."
(syntax-case x ()
((_ type within)
(syntax-violation (syntax->datum #'within)
- "undefined guix record-type"
+ "undefined record type"
#'type))
(_ (syntax-violation 'map-fields "bad use of syntactic keyword" x x)))))