summaryrefslogtreecommitdiff
path: root/guix/http-client.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2016-01-06 18:04:36 +0100
committerLudovic Courtès <ludo@gnu.org>2016-01-06 23:08:22 +0100
commit1c63dafce60cb362f80986eed7ce823a3f3500a9 (patch)
tree9fb7f26f6d4eb05b43a711f8944b2deccc490b94 /guix/http-client.scm
parentc7b08410de7ebe7e34cf974320e3bf4a8b2b98ca (diff)
downloadgnu-guix-1c63dafce60cb362f80986eed7ce823a3f3500a9.tar
gnu-guix-1c63dafce60cb362f80986eed7ce823a3f3500a9.tar.gz
http-client: Fix erroneous comment.
* guix/http-client.scm: Fix Guile version number in comment for Guile commit 5a10e41.
Diffstat (limited to 'guix/http-client.scm')
-rw-r--r--guix/http-client.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/http-client.scm b/guix/http-client.scm
index c7cbc82aac..b0aae52658 100644
--- a/guix/http-client.scm
+++ b/guix/http-client.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2012, 2013, 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
;;; Copyright © 2012, 2015 Free Software Foundation, Inc.
;;;
@@ -191,7 +191,7 @@ closes PORT, unless KEEP-ALIVE? is true."
(unless (guile-version>? "2.0.11")
;; Guile <= 2.0.9 had a bug whereby 'response-body-port' would read more
;; than what 'content-length' says. See Guile commit 802a25b.
- ;; Guile <= 2.0.12 had a bug whereby the 'close' method of the response
+ ;; Guile <= 2.0.11 had a bug whereby the 'close' method of the response
;; body port would fail with wrong-arg-num. See Guile commit 5a10e41.
(module-set! (resolve-module '(web response))
'make-delimited-input-port make-delimited-input-port)))