diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-01-21 16:05:37 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-01-22 08:36:03 +0100 |
commit | 211a50352227ef8fa98bc45b2248937ab602fff1 (patch) | |
tree | 49a8fb1bccfe4961c1975e488f7cd52a9cc6a6ea /gnu/system.scm | |
parent | 5d03ef73c3c1d995714abdaff650f73ac9fafc0f (diff) |
system: Fix typo in docstring.
* gnu/system.scm (operating-system-etc-service): Fix typo.
Diffstat (limited to 'gnu/system.scm')
-rw-r--r-- | gnu/system.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/system.scm b/gnu/system.scm index c284a18379..90ad368664 100644 --- a/gnu/system.scm +++ b/gnu/system.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2015 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2015, 2016 Alex Kost <alezost@gmail.com> ;;; Copyright © 2016 Chris Marusich <cmmarusich@gmail.com> @@ -858,8 +858,8 @@ syntactically correct." (copy-file #$file #$output))))) (define* (operating-system-etc-service os) - "Return a <service> that builds containing the static part of the /etc -directory." + "Return a <service> that builds a directory containing the static part of +the /etc directory." (let* ((login.defs (plain-file "login.defs" (string-append |