aboutsummaryrefslogtreecommitdiff
path: root/guix/deprecation.scm
diff options
context:
space:
mode:
authorFelix Lechner <felix.lechner@lease-up.com>2023-11-30 08:37:37 -0800
committerLudovic Courtès <ludo@gnu.org>2023-12-22 17:47:15 +0100
commit7f2583cf55059ce1deaa8a6d1735655e17dcfb39 (patch)
tree06a0598aba097996ed4e7c7854d1ee9c8534944e /guix/deprecation.scm
parentea83ffbc3957f66724c2eec41096322b43f73e86 (diff)
downloadguix-7f2583cf55059ce1deaa8a6d1735655e17dcfb39.tar
guix-7f2583cf55059ce1deaa8a6d1735655e17dcfb39.tar.gz
deprecation: Fix docstring typo.
* guix/deprecation.scm (define-deprecated/public): Fix docstring. Change-Id: I895b1a86654b2756a9f98e858c622e8e7a6e2c27 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'guix/deprecation.scm')
-rw-r--r--guix/deprecation.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/deprecation.scm b/guix/deprecation.scm
index 8147a01e24..47e653dfb2 100644
--- a/guix/deprecation.scm
+++ b/guix/deprecation.scm
@@ -103,7 +103,7 @@ This will write a deprecation warning to GUIX-WARNING-PORT."
#'(define-deprecated variable alias alias)))))
(define-syntax-rule (define-deprecated/public body ...)
- "Like 'define/deprecated', but export all the newly introduced bindings."
+ "Like 'define-deprecated', but export all the newly introduced bindings."
(define-deprecated public body ...))
(define-syntax-rule (define-deprecated/alias deprecated replacement)