From 63867ffc649e5c701a171a387f4aa97cf79f7788 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Sun, 22 Jan 2023 23:32:26 +0000 Subject: commit: Refer to correct metasyntactic variable in docstring. * tissue/commit.scm (document-id-term, document-recency-date): Refer to metasyntactic variable COMMIT, not DOCUMENT. --- tissue/commit.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tissue') diff --git a/tissue/commit.scm b/tissue/commit.scm index e08f5a6..151a744 100644 --- a/tissue/commit.scm +++ b/tissue/commit.scm @@ -1,5 +1,5 @@ ;;; tissue --- Text based issue tracker -;;; Copyright © 2022 Arun Isaac +;;; Copyright © 2022, 2023 Arun Isaac ;;; ;;; This file is part of tissue. ;;; @@ -39,7 +39,7 @@ (author-date #:getter doc:commit-author-date #:init-keyword #:author-date)) (define-method (document-id-term (commit )) - "Return the ID term for DOCUMENT." + "Return the ID term for COMMIT." (string-append "Qcommit." (commit-hash commit))) (define-method (document-boolean-terms (commit )) @@ -48,7 +48,7 @@ (string-append "A" (doc:commit-author commit)))) (define-method (document-recency-date (commit )) - "Return a date representing the recency of DOCUMENT" + "Return a date representing the recency of COMMIT." (doc:commit-author-date commit)) (define-method (document-snippet-source-text (commit )) -- cgit v1.2.3