[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/05: installer: Fix docstring typoes.
From: |
guix-commits |
Subject: |
01/05: installer: Fix docstring typoes. |
Date: |
Sun, 20 Sep 2020 20:35:56 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit e1f3788944ee154ba9b33c891c4ccf039a1ff39a
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Sep 20 21:05:23 2020 +0200
installer: Fix docstring typoes.
* gnu/installer/connman.scm (connman-state, run-locale-page)
(start-swapping, stop-swapping, run-installer-steps): Fix typo in
docstring.
---
gnu/installer/connman.scm | 2 +-
gnu/installer/newt/locale.scm | 2 +-
gnu/installer/parted.scm | 4 ++--
gnu/installer/steps.scm | 2 +-
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/gnu/installer/connman.scm b/gnu/installer/connman.scm
index 386f431..2f33b58 100644
--- a/gnu/installer/connman.scm
+++ b/gnu/installer/connman.scm
@@ -180,7 +180,7 @@ Return the corresponding association list of '((KEY .
VALUE) (KEY2 . VALUE2)
(define (connman-state)
"Return the state of connman. The nominal states are 'offline, 'idle,
'ready, 'oneline. If an unexpected state is read, 'unknown is
-returned. Finally, an error is raised if the comman output could not be
+returned. Finally, an error is raised if the connman output could not be
parsed, usually because the connman daemon is not responding."
(let* ((output (connman "state"))
(state-keys (parse-keys output)))
diff --git a/gnu/installer/newt/locale.scm b/gnu/installer/newt/locale.scm
index 7108e29..bfd89ac 100644
--- a/gnu/installer/newt/locale.scm
+++ b/gnu/installer/newt/locale.scm
@@ -106,7 +106,7 @@ symbol.")
territory, codeset and modifier. Use SUPPORTED-LOCALES as the list of glibc
available locales. ISO639-LANGUAGES is an association list associating a
locale code to a locale name. ISO3166-TERRITORIES is an association list
-associating a territory code with a territory name. The formated locale, under
+associating a territory code with a territory name. The formatted locale, under
glibc format is returned."
(define (break-on-locale-found locales)
diff --git a/gnu/installer/parted.scm b/gnu/installer/parted.scm
index ff5f6af..b0c73b8 100644
--- a/gnu/installer/parted.scm
+++ b/gnu/installer/parted.scm
@@ -1201,13 +1201,13 @@ the FS-TYPE field set to 'swap, return the empty list
if none found."
user-partitions))
(define (start-swapping user-partitions)
- "Start swaping on <user-partition> records with FS-TYPE equal to 'swap."
+ "Start swapping on <user-partition> records with FS-TYPE equal to 'swap."
(let* ((swap-user-partitions (find-swap-user-partitions user-partitions))
(swap-devices (map user-partition-file-name swap-user-partitions)))
(for-each swapon swap-devices)))
(define (stop-swapping user-partitions)
- "Stop swaping on <user-partition> records with FS-TYPE equal to 'swap."
+ "Stop swapping on <user-partition> records with FS-TYPE equal to 'swap."
(let* ((swap-user-partitions (find-swap-user-partitions user-partitions))
(swap-devices (map user-partition-file-name swap-user-partitions)))
(for-each swapoff swap-devices)))
diff --git a/gnu/installer/steps.scm b/gnu/installer/steps.scm
index 0b6d8e4..16d74c2 100644
--- a/gnu/installer/steps.scm
+++ b/gnu/installer/steps.scm
@@ -88,7 +88,7 @@
(rewind-strategy 'previous)
(menu-proc (const #f)))
"Run the COMPUTE procedure of all <installer-step> records in STEPS
-sequencially. If the &installer-step-abort condition is raised, fallback to a
+sequentially. If the &installer-step-abort condition is raised, fallback to a
previous install-step, accordingly to the specified REWIND-STRATEGY.
REWIND-STRATEGY possible values are 'previous, 'menu and 'start. If 'previous