From 7f2583cf55059ce1deaa8a6d1735655e17dcfb39 Mon Sep 17 00:00:00 2001 From: Felix Lechner Date: Thu, 30 Nov 2023 08:37:37 -0800 Subject: [PATCH] deprecation: Fix docstring typo. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * guix/deprecation.scm (define-deprecated/public): Fix docstring. Change-Id: I895b1a86654b2756a9f98e858c622e8e7a6e2c27 Signed-off-by: Ludovic Courtès --- guix/deprecation.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)