diff options
author | Efraim Flashner <[email protected]> | 2025-02-19 11:11:03 +0200 |
---|---|---|
committer | Efraim Flashner <[email protected]> | 2025-02-19 11:21:47 +0200 |
commit | 66daf46b411ea68893d3066e654f38fc05d6f286 (patch) | |
tree | 2ce35923cbe23e485b483ad93db0a93bf144aee7 /gnu/installer | |
parent | 77ad73b333d80b60dd9861c75d1dd93d3e4ae33c (diff) |
gnu: Fix some misspellings.
Change-Id: I316652aff7418af4b8e83bea24638b1513f8aa97
Diffstat (limited to 'gnu/installer')
-rw-r--r-- | gnu/installer/newt.scm | 2 | ||||
-rw-r--r-- | gnu/installer/newt/services.scm | 2 | ||||
-rw-r--r-- | gnu/installer/parted.scm | 2 | ||||
-rw-r--r-- | gnu/installer/steps.scm | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/gnu/installer/newt.scm b/gnu/installer/newt.scm index 1fe710340f..521668a3b2 100644 --- a/gnu/installer/newt.scm +++ b/gnu/installer/newt.scm @@ -65,7 +65,7 @@ (define (exit-error error) ;; Newt may be suspended in the context of the "install-system" - ;; procedure. Resume it unconditionnally. + ;; procedure. Resume it unconditionally. (newt-resume) (newt-set-color COLORSET-ROOT "white" "red") (define action diff --git a/gnu/installer/newt/services.scm b/gnu/installer/newt/services.scm index 848683e8c7..a91a08668d 100644 --- a/gnu/installer/newt/services.scm +++ b/gnu/installer/newt/services.scm @@ -86,7 +86,7 @@ system.") (abort-to-prompt 'installer-step 'abort))))) (define (run-console-services-cbt-page) - "Run a page to select various system adminstration services for non-graphical + "Run a page to select various system administration services for non-graphical systems." (let ((items (filter (lambda (service) (eq? 'administration diff --git a/gnu/installer/parted.scm b/gnu/installer/parted.scm index ccddc64f11..de2b4dc99b 100644 --- a/gnu/installer/parted.scm +++ b/gnu/installer/parted.scm @@ -927,7 +927,7 @@ cause them to cross." ;; -;; Auto partitionning. +;; Auto partitioning. ;; (define* (create-adjacent-partitions! disk partitions diff --git a/gnu/installer/steps.scm b/gnu/installer/steps.scm index 34dd14c9d5..b70e5ebda5 100644 --- a/gnu/installer/steps.scm +++ b/gnu/installer/steps.scm @@ -92,7 +92,7 @@ sequentially, inside a the 'installer-step prompt. When aborted to with a parameter of 'abort, fallback to a previous install-step, accordingly to the specified REWIND-STRATEGY. When aborted to with a parameter of 'break, stop -the computation and return the accumalated result so far. +the computation and return the accumulated result so far. REWIND-STRATEGY possible values are 'previous, 'menu and 'start. If 'previous is selected, the execution will resume at the previous installer-step. If |