guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: guix: packages: Add type hint comment to home-page record field.


From: guix-commits
Subject: 02/02: guix: packages: Add type hint comment to home-page record field.
Date: Mon, 19 Dec 2022 06:58:40 -0500 (EST)

abcdw pushed a commit to branch master
in repository guix.

commit 061609ee57a201157a21d8d2c237f4f0be067bba
Author: jgart <jgart@dismail.de>
AuthorDate: Tue Dec 6 23:57:09 2022 -0600

    guix: packages: Add type hint comment to home-page record field.
    
    * guix/packages.scm (package)[home-page]: Add type comment.
    
    Signed-off-by: Andrew Tropin <andrew@trop.in>
---
 guix/packages.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/guix/packages.scm b/guix/packages.scm
index 6e61e16aa4..041a872f9d 100644
--- a/guix/packages.scm
+++ b/guix/packages.scm
@@ -8,6 +8,7 @@
 ;;; Copyright © 2020, 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
 ;;; Copyright © 2021 Chris Marusich <cmmarusich@gmail.com>
 ;;; Copyright © 2022 Maxime Devos <maximedevos@telenet.be>
+;;; Copyright © 2022 jgart <jgart@dismail.de>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -610,7 +611,7 @@ Texinfo.  Otherwise, return the string."
                (sanitize validate-texinfo))       ; one or two paragraphs
   (license package-license                        ; (list of) <license>
            (sanitize validate-license))
-  (home-page package-home-page)
+  (home-page package-home-page)                   ; string
   (supported-systems package-supported-systems    ; list of strings
                      (default %supported-systems))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]