diff options
author | Ludovic Courtès <ludo@gnu.org> | 2024-01-26 17:38:12 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-02-12 12:03:53 +0100 |
commit | 5a61ce6bcfbd0882956e40457232da737776abe7 (patch) | |
tree | 08483d23751736653f4b0441e73d2bc5d11efdf9 /guix/swh.scm | |
parent | 264fdbcaff9c078642355bace0c61c094b3581fc (diff) |
swh: Fix docstring of ‘lookup-directory’.
* guix/swh.scm (lookup-directory): Fix docstring.
Change-Id: Ia1fd9b2bc9184364cebbd30ee84c9fdea4ba897c
Diffstat (limited to 'guix/swh.scm')
-rw-r--r-- | guix/swh.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/swh.scm b/guix/swh.scm index be1eb7d151..04cecd854c 100644 --- a/guix/swh.scm +++ b/guix/swh.scm @@ -446,7 +446,7 @@ FALSE-IF-404? is true, return #f upon 404 responses." json->revision) (define-query (lookup-directory id) - "Return the directory with the given ID." + "Return the list of entries of the directory with the given ID." (path "/api/1/directory" id) json->directory-entries) |