mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
home: services: Fix typo.
* gnu/home/services.scm (environment-variables->setup-environment-script): Fix spelling of 'warn-about-duplicate-definitions'.
This commit is contained in:
parent
c420b66c23
commit
7a6302acb0
1 changed files with 2 additions and 2 deletions
|
@ -181,7 +181,7 @@ (define (environment-variables->setup-environment-script vars)
|
|||
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 @@ (define (warn-about-duplicate-defenitions)
|
|||
(sort vars (lambda (a b)
|
||||
(string<? (car a) (car b))))))
|
||||
|
||||
(warn-about-duplicate-defenitions)
|
||||
(warn-about-duplicate-definitions)
|
||||
(with-monad
|
||||
%store-monad
|
||||
(return
|
||||
|
|
Loading…
Reference in a new issue