aboutsummaryrefslogtreecommitdiff
path: root/guix/utils.scm
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2021-12-29 22:55:55 +0100
committerTobias Geerinckx-Rice <me@tobias.gr>2021-12-30 13:41:27 +0100
commitea2fd313d52dc62593b478acf5c3e7ea052c45de (patch)
tree8a6fbf39d8eb1f3e139ea7a846e300b06f5f39df /guix/utils.scm
parent5b307aff664abf6c8d1d713a5806e46c9b7ca208 (diff)
downloadguix-ea2fd313d52dc62593b478acf5c3e7ea052c45de.tar
guix-ea2fd313d52dc62593b478acf5c3e7ea052c45de.tar.gz
utils: Fix URL in comment.
* guix/utils.scm (target-x86-32?): Fix Wikipedia URL.
Diffstat (limited to 'guix/utils.scm')
-rw-r--r--guix/utils.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/utils.scm b/guix/utils.scm
index 9596ff8582..536323978e 100644
--- a/guix/utils.scm
+++ b/guix/utils.scm
@@ -668,7 +668,7 @@ a character other than '@'."
"Is the architecture of TARGET a variant of Intel's 32-bit architecture
(IA32)?"
;; Intel also has a 16-bit architecture in the iN86 series, i286
- ;; (see, e.g. https://en.wikipedia.org/wiki/Intel/808286) so this
+ ;; (see, e.g., https://en.wikipedia.org/wiki/Intel_80286) so this
;; procedure is not named target-x86?.
(or (string-prefix? "i386-" target)
(string-prefix? "i486-" target)