diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-02-10 15:54:53 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-02-18 01:52:47 +0100 |
commit | b83e4a93a2118513cdd2186d796729f0813264c0 (patch) | |
tree | c3fca23ec93584d6c990e843ef7a6c6a6dc9f25f /gnu/installer/newt/timezone.scm | |
parent | a9e9c738dcdeff1fbbf6f365f47c44983e63bb9d (diff) | |
download | guix-b83e4a93a2118513cdd2186d796729f0813264c0.tar.gz |
gnu: Fix some typos in the installer.
* gnu/installer/connman.scm (connman-connect-with-auth): Fix typo in documentation. * gnu/installer/newt/keymap.scm (sort-variants): Likewise. * gnu/installer/newt/page.scm (run-listbox-selection-page): Likewise. * gnu/installer/parted.scm (mkpart): Likewise. * gnu/installer/newt/utils.scm (destroy-form-and-pop): Likewise. * gnu/installer/newt/wifi.scm (run-unknown-error-page): Fix typo. (wifi-listbox-heigth): Rename to… (wifi-listbox-height): …this, and adjust caller. * gnu/installer/timezone.scm (locate-childrens): Rename to… (locate-children): …this. Adjust all callers.
Diffstat (limited to 'gnu/installer/newt/timezone.scm')
-rw-r--r-- | gnu/installer/newt/timezone.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/installer/newt/timezone.scm b/gnu/installer/newt/timezone.scm index 6c96ee55b1..c94301a659 100644 --- a/gnu/installer/newt/timezone.scm +++ b/gnu/installer/newt/timezone.scm @@ -30,7 +30,7 @@ #:use-module (newt) #:export (run-timezone-page)) -;; Heigth of the listbox displaying timezones. +;; Height of the listbox displaying timezones. (define timezone-listbox-heigth (make-parameter 20)) ;; Information textbox width. @@ -53,7 +53,7 @@ returned." (define (run-page timezone-tree) (define (loop path) - (let ((timezones (locate-childrens timezone-tree path))) + (let ((timezones (locate-children timezone-tree path))) (run-listbox-selection-page #:title (G_ "Timezone") #:info-text (G_ "Please select a timezone.") |