diff options
| author | Efraim Flashner <efraim@flashner.co.il> | 2026-01-08 16:49:07 +0200 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2026-01-14 09:16:46 +0100 |
| commit | 82e58c26db9ebe5ccd66fecd92aa423a42ecda87 (patch) | |
| tree | 2569f6ac4df31e6470184f5b54becdec72b7af94 | |
| parent | 35930066e5d893ee0057d0b78f8533be1117dcfb (diff) | |
guix: Spelling corrections.
* guix/gnupg.scm,
guix/import/composer.scm,
guix/import/cpan.scm,
guix/import/crate/cargo-lock.scm,
guix/import/hackage.scm,
guix/import/json.scm,
guix/licenses.scm,
guix/packages.scm,
guix/scripts/import.scm,
guix/ui.scm: Fix misspellings in comments and doc strings.
Change-Id: I8e922f8e980214e345a42a995788a7c4adb9184d
| -rw-r--r-- | guix/gnupg.scm | 2 | ||||
| -rw-r--r-- | guix/import/composer.scm | 2 | ||||
| -rw-r--r-- | guix/import/cpan.scm | 2 | ||||
| -rw-r--r-- | guix/import/crate/cargo-lock.scm | 2 | ||||
| -rw-r--r-- | guix/import/hackage.scm | 2 | ||||
| -rw-r--r-- | guix/import/json.scm | 2 | ||||
| -rw-r--r-- | guix/licenses.scm | 2 | ||||
| -rw-r--r-- | guix/packages.scm | 2 | ||||
| -rw-r--r-- | guix/scripts/import.scm | 2 | ||||
| -rw-r--r-- | guix/ui.scm | 2 |
10 files changed, 10 insertions, 10 deletions
diff --git a/guix/gnupg.scm b/guix/gnupg.scm index 042c43be710..3c6d1f878a0 100644 --- a/guix/gnupg.scm +++ b/guix/gnupg.scm | |||
| @@ -78,7 +78,7 @@ | |||
| 78 | (define revkeysig-rx ; good signature, but revoked key | 78 | (define revkeysig-rx ; good signature, but revoked key |
| 79 | (make-regexp "^\\[GNUPG:\\] REVKEYSIG ([[:xdigit:]]+) (.*)$")) | 79 | (make-regexp "^\\[GNUPG:\\] REVKEYSIG ([[:xdigit:]]+) (.*)$")) |
| 80 | (define errsig-rx | 80 | (define errsig-rx |
| 81 | ;; Note: The fingeprint part (the last element of the line) appeared in | 81 | ;; Note: The fingerprint part (the last element of the line) appeared in |
| 82 | ;; GnuPG 2.2.7 according to 'doc/DETAILS', and it may be missing. | 82 | ;; GnuPG 2.2.7 according to 'doc/DETAILS', and it may be missing. |
| 83 | (make-regexp | 83 | (make-regexp |
| 84 | "^\\[GNUPG:\\] ERRSIG ([[:xdigit:]]+) ([^ ]+) ([^ ]+) ([^ ]+) ([[:digit:]]+) ([[:digit:]]+)(.*)")) | 84 | "^\\[GNUPG:\\] ERRSIG ([[:xdigit:]]+) ([^ ]+) ([^ ]+) ([^ ]+) ([[:digit:]]+) ([[:digit:]]+)(.*)")) |
diff --git a/guix/import/composer.scm b/guix/import/composer.scm index 5c6706a9139..636990ab067 100644 --- a/guix/import/composer.scm +++ b/guix/import/composer.scm | |||
| @@ -97,7 +97,7 @@ | |||
| 97 | 97 | ||
| 98 | (define* (composer-fetch name #:key version partial-version?) | 98 | (define* (composer-fetch name #:key version partial-version?) |
| 99 | "Return a composer-package representation of the Composer metadata for the | 99 | "Return a composer-package representation of the Composer metadata for the |
| 100 | package NAME with optional VERSION, or #f on failure. VERSION may be gien as | 100 | package NAME with optional VERSION, or #f on failure. VERSION may be given as |
| 101 | version prefix if PARTIAL-VERSION? is #t." | 101 | version prefix if PARTIAL-VERSION? is #t." |
| 102 | (and-let* ((url (string-append (%composer-base-url) "/p/" name ".json")) | 102 | (and-let* ((url (string-append (%composer-base-url) "/p/" name ".json")) |
| 103 | (packages (and=> (json-fetch url) | 103 | (packages (and=> (json-fetch url) |
diff --git a/guix/import/cpan.scm b/guix/import/cpan.scm index ac4c0d86338..bc5dfd18479 100644 --- a/guix/import/cpan.scm +++ b/guix/import/cpan.scm | |||
| @@ -102,7 +102,7 @@ | |||
| 102 | (define string->license | 102 | (define string->license |
| 103 | (match-lambda | 103 | (match-lambda |
| 104 | ;; List of valid values from https://metacpan.org/pod/CPAN::Meta::Spec. | 104 | ;; List of valid values from https://metacpan.org/pod/CPAN::Meta::Spec. |
| 105 | ;; Some licenses are excluded based on their absense from (guix licenses). | 105 | ;; Some licenses are excluded based on their absence from (guix licenses). |
| 106 | ("agpl_3" 'agpl3) | 106 | ("agpl_3" 'agpl3) |
| 107 | ;; apache_1_1 | 107 | ;; apache_1_1 |
| 108 | ("apache_2_0" 'asl2.0) | 108 | ("apache_2_0" 'asl2.0) |
diff --git a/guix/import/crate/cargo-lock.scm b/guix/import/crate/cargo-lock.scm index 4f95ae6e303..44e4053334d 100644 --- a/guix/import/crate/cargo-lock.scm +++ b/guix/import/crate/cargo-lock.scm | |||
| @@ -35,7 +35,7 @@ | |||
| 35 | (define (cargo-lock-string->scm str) | 35 | (define (cargo-lock-string->scm str) |
| 36 | (peg:tree (search-for-pattern cargo-lock str))) | 36 | (peg:tree (search-for-pattern cargo-lock str))) |
| 37 | 37 | ||
| 38 | ;; Auxiliar peg patterns | 38 | ;; Auxiliary peg patterns |
| 39 | (define-peg-pattern numeric-char body | 39 | (define-peg-pattern numeric-char body |
| 40 | (range #\0 #\9)) | 40 | (range #\0 #\9)) |
| 41 | 41 | ||
diff --git a/guix/import/hackage.scm b/guix/import/hackage.scm index 34bcc9f7072..b423b815a2c 100644 --- a/guix/import/hackage.scm +++ b/guix/import/hackage.scm | |||
| @@ -222,7 +222,7 @@ object." | |||
| 222 | (define (filter-dependencies dependencies own-names) | 222 | (define (filter-dependencies dependencies own-names) |
| 223 | "Filter the dependencies included with the GHC compiler from DEPENDENCIES, a | 223 | "Filter the dependencies included with the GHC compiler from DEPENDENCIES, a |
| 224 | list with the names of dependencies. OWN-NAMES is the name of the Cabal | 224 | list with the names of dependencies. OWN-NAMES is the name of the Cabal |
| 225 | package being processed and its internal libaries and is used to filter | 225 | package being processed and its internal libraries and is used to filter |
| 226 | references to itself." | 226 | references to itself." |
| 227 | (let ((ignored-dependencies (map string-downcase | 227 | (let ((ignored-dependencies (map string-downcase |
| 228 | (append own-names ghc-standard-libraries)))) | 228 | (append own-names ghc-standard-libraries)))) |
diff --git a/guix/import/json.scm b/guix/import/json.scm index bf346a1bef0..2a2a7b9d7c5 100644 --- a/guix/import/json.scm +++ b/guix/import/json.scm | |||
| @@ -57,7 +57,7 @@ enable caching, supply 'http-fetch/cached'." | |||
| 57 | result))) | 57 | result))) |
| 58 | 58 | ||
| 59 | (define (json->code file-name) | 59 | (define (json->code file-name) |
| 60 | "Read FILE-NAME containing one ore more JSON package definitions and return | 60 | "Read FILE-NAME containing one or more JSON package definitions and return |
| 61 | a list of S-expressions, or return #F when the JSON is invalid." | 61 | a list of S-expressions, or return #F when the JSON is invalid." |
| 62 | (catch 'json-invalid | 62 | (catch 'json-invalid |
| 63 | (lambda () | 63 | (lambda () |
diff --git a/guix/licenses.scm b/guix/licenses.scm index 1226275d560..6e23de4a009 100644 --- a/guix/licenses.scm +++ b/guix/licenses.scm | |||
| @@ -307,7 +307,7 @@ at URI, which may be a file:// URI pointing the package's tree." | |||
| 307 | "https://www.gnu.org/licenses/license-list#CDDL")) | 307 | "https://www.gnu.org/licenses/license-list#CDDL")) |
| 308 | 308 | ||
| 309 | ;; CDDL1.1 is the same as 1.0, except that "Sun Microsystems, Inc" becomes "Oracle", | 309 | ;; CDDL1.1 is the same as 1.0, except that "Sun Microsystems, Inc" becomes "Oracle", |
| 310 | ;; "LOST PROFITS" becoms "LOSS OF GOODWILL" and a section is added between 6.2 | 310 | ;; "LOST PROFITS" becomes "LOSS OF GOODWILL" and a section is added between 6.2 |
| 311 | ;; and 6.3. | 311 | ;; and 6.3. |
| 312 | (define cddl1.1 | 312 | (define cddl1.1 |
| 313 | (license "CDDL 1.1" | 313 | (license "CDDL 1.1" |
diff --git a/guix/packages.scm b/guix/packages.scm index beb889f933f..9168ae14d71 100644 --- a/guix/packages.scm +++ b/guix/packages.scm | |||
| @@ -243,7 +243,7 @@ representation." | |||
| 243 | (define-compile-time-decoder base32 nix-base32-string->bytevector) | 243 | (define-compile-time-decoder base32 nix-base32-string->bytevector) |
| 244 | (define-compile-time-decoder base64 base64-decode) | 244 | (define-compile-time-decoder base64 base64-decode) |
| 245 | 245 | ||
| 246 | ;; Crytographic content hash. | 246 | ;; Cryptographic content hash. |
| 247 | (define-immutable-record-type <content-hash> | 247 | (define-immutable-record-type <content-hash> |
| 248 | (%content-hash algorithm value) | 248 | (%content-hash algorithm value) |
| 249 | content-hash? | 249 | content-hash? |
diff --git a/guix/scripts/import.scm b/guix/scripts/import.scm index 5de5fc9e000..464fa372cd9 100644 --- a/guix/scripts/import.scm +++ b/guix/scripts/import.scm | |||
| @@ -122,7 +122,7 @@ PROC callback." | |||
| 122 | 122 | ||
| 123 | (define (process-args args) | 123 | (define (process-args args) |
| 124 | (match args | 124 | (match args |
| 125 | ;; Workaround to accpet ‘--insert=FILE’, for the consistency of | 125 | ;; Workaround to accept ‘--insert=FILE’, for the consistency of |
| 126 | ;; command-line interface. | 126 | ;; command-line interface. |
| 127 | ((arg . rest) | 127 | ((arg . rest) |
| 128 | (if (string-prefix? "--insert=" arg) | 128 | (if (string-prefix? "--insert=" arg) |
diff --git a/guix/ui.scm b/guix/ui.scm index c453383c2b0..86d7e16f38d 100644 --- a/guix/ui.scm +++ b/guix/ui.scm | |||
| @@ -319,7 +319,7 @@ VARIABLE and return it, or #f if none was found." | |||
| 319 | (define %hint-color (color BOLD CYAN)) | 319 | (define %hint-color (color BOLD CYAN)) |
| 320 | 320 | ||
| 321 | (define (texinfo-quote str) | 321 | (define (texinfo-quote str) |
| 322 | "Quote at signs and braces in STR to obtain its Texinfo represention." | 322 | "Quote at signs and braces in STR to obtain its Texinfo representation." |
| 323 | (list->string | 323 | (list->string |
| 324 | (string-fold-right (lambda (chr result) | 324 | (string-fold-right (lambda (chr result) |
| 325 | (if (memq chr '(#\@ #\{ #\})) | 325 | (if (memq chr '(#\@ #\{ #\})) |
