diff options
author | Ludovic Courtès <ludo@gnu.org> | 2022-03-03 22:33:26 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-03-03 23:57:00 +0100 |
commit | b4acb39b6b6257b25ee205d14b17580c9ad1bb5e (patch) | |
tree | df30a5bc9c845487ead1de43fd08322b93bb972f | |
parent | 137a5bc71de8f90ec76f2321294d02620234ae66 (diff) | |
download | guix-b4acb39b6b6257b25ee205d14b17580c9ad1bb5e.tar.gz |
download: Remove obsolete bit from docstring.
This is a followup to f4cde9ac4aedb516c050a30fd999673da434bfa0. * guix/build/download.scm (open-connection-for-uri): Remove bit about 'close-connection' from the docstring.
-rw-r--r-- | guix/build/download.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/guix/build/download.scm b/guix/build/download.scm index 7c310e94f1..c938151113 100644 --- a/guix/build/download.scm +++ b/guix/build/download.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2012-2022 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2015 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2021 Timothy Sample <samplet@ngyro.com> @@ -431,8 +431,7 @@ ETIMEDOUT error is raised." #:key timeout (verify-certificate? #t)) - "Like 'open-socket-for-uri', but also handle HTTPS connections. The -resulting port must be closed with 'close-connection'. When + "Like 'open-socket-for-uri', but also handle HTTPS connections. When VERIFY-CERTIFICATE? is true, verify HTTPS server certificates." ;; Note: Guile 2.2.0's (web client) has a same-named export that's actually ;; undefined. See Guile commit 011669af3b428e5626f7bbf66b11d57d9768c047. |