guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/05: home: services: Fix typo.


From: guix-commits
Subject: 01/05: home: services: Fix typo.
Date: Wed, 13 Jul 2022 19:09:21 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 7a6302acb015c5df3aa5007792887149978355db
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Wed Jul 13 17:00:00 2022 +0200

    home: services: Fix typo.
    
    * gnu/home/services.scm (environment-variables->setup-environment-script):
    Fix spelling of 'warn-about-duplicate-definitions'.
---
 gnu/home/services.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/home/services.scm b/gnu/home/services.scm
index 5ee3357792..5e3d3dfa8a 100644
--- a/gnu/home/services.scm
+++ b/gnu/home/services.scm
@@ -181,7 +181,7 @@ If value is @code{#f} variable will be omitted.
 If value is @code{#t} variable will be just exported.
 For any other, value variable will be set to the @code{value} and
 exported."
-  (define (warn-about-duplicate-defenitions)
+  (define (warn-about-duplicate-definitions)
     (fold
      (lambda (x acc)
        (when (equal? (car x) (car acc))
@@ -192,7 +192,7 @@ exported."
      (sort vars (lambda (a b)
                   (string<? (car a) (car b))))))
 
-  (warn-about-duplicate-defenitions)
+  (warn-about-duplicate-definitions)
   (with-monad
    %store-monad
    (return



reply via email to

[Prev in Thread] Current Thread [Next in Thread]