diff options
author | Ludovic Courtès <ludo@gnu.org> | 2023-06-09 14:00:51 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-06-09 14:19:14 +0200 |
commit | 1c9e992e8c636ce8798c26fa1c8f744fbe17255e (patch) | |
tree | a749628bd228c145839135448f6020b03c454a0f /guix | |
parent | 56ad923f47d352e1bee1a94da1a246ae21c03569 (diff) |
records: Remove "guix" from error message.
* guix/records.scm (map-fields): Tweak error message.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/records.scm | 2 |
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))))) |