aboutsummaryrefslogtreecommitdiff
path: root/guix/git.scm
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2023-09-05 23:04:26 -0400
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2023-09-05 23:04:26 -0400
commita87d7225709370a635e3c443fe7eba4c206e1dcd (patch)
treeecb6a9ddca5a1cbd7067f880229e2d3fd8a70028 /guix/git.scm
parentc3d48d024b95f57850ec429d7f326d817dda5090 (diff)
downloadguix-a87d7225709370a635e3c443fe7eba4c206e1dcd.tar
guix-a87d7225709370a635e3c443fe7eba4c206e1dcd.tar.gz
git: Fix typo in reference-available? comment.
* guix/git.scm (reference-available?): Fix typo.
Diffstat (limited to 'guix/git.scm')
-rw-r--r--guix/git.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/git.scm b/guix/git.scm
index a957773873..1cb87a4560 100644
--- a/guix/git.scm
+++ b/guix/git.scm
@@ -363,8 +363,8 @@ definitely available in REPOSITORY, false otherwise."
;; Note: this must not rely on 'resolve-reference', as that procedure always
;; resolves the references for branch names such as master. The semantic we
;; want here is that unless the reference is exact (e.g. a commit), the
- ;; reference should not be considered available, has it could have changed
- ;; on the remote.
+ ;; reference should not be considered available, as it could have changed on
+ ;; the remote.
(match ref
((or ('commit . commit)
('tag-or-commit . (? commit-id? commit)))