diff mbox series

[bug#68049] download: Fix docstring typo.

Message ID 20231226145515.14831-1-romain.garbage@inria.fr
State New
Headers show
Series [bug#68049] download: Fix docstring typo. | expand

Commit Message

Romain GARBAGE Dec. 26, 2023, 2:54 p.m. UTC
* guix/scripts/download.scm (ensure-valid-store-file-name name): Fix
  docstring.

Change-Id: If3fe3a923f514bb69297b566e0642c5e80fe4648
---
 guix/scripts/download.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Mathieu Othacehe Dec. 27, 2023, 8:33 p.m. UTC | #1
>  (define (ensure-valid-store-file-name name)
> -  "Replace any character not allowed in a stror name by an underscore."
> +  "Replace any character not allowed in a store name by an underscore."

Applied, thanks,

Mathieu
diff mbox series

Patch

diff --git a/guix/scripts/download.scm b/guix/scripts/download.scm
index 0441d3fead..19052d5652 100644
--- a/guix/scripts/download.scm
+++ b/guix/scripts/download.scm
@@ -55,7 +55,7 @@  (define (download-to-file url file)
     file))
 
 (define (ensure-valid-store-file-name name)
-  "Replace any character not allowed in a stror name by an underscore."
+  "Replace any character not allowed in a store name by an underscore."
 
   (define valid
     ;; according to nix/libstore/store-api.cc