diff options
author | Arun Isaac | 2023-01-22 23:32:26 +0000 |
---|---|---|
committer | Arun Isaac | 2023-01-23 00:28:12 +0000 |
commit | 63867ffc649e5c701a171a387f4aa97cf79f7788 (patch) | |
tree | cc5fa41b517d4fc694c0ba5b662d2c5c5c4aa541 | |
parent | 08afa8b0548b2870a36f1a30ba3c4dc7f515f169 (diff) | |
download | tissue-63867ffc649e5c701a171a387f4aa97cf79f7788.tar.gz tissue-63867ffc649e5c701a171a387f4aa97cf79f7788.tar.lz tissue-63867ffc649e5c701a171a387f4aa97cf79f7788.zip |
commit: Refer to correct metasyntactic variable in docstring.
* tissue/commit.scm (document-id-term, document-recency-date): Refer
to metasyntactic variable COMMIT, not DOCUMENT.
-rw-r--r-- | tissue/commit.scm | 6 |
1 files changed, 3 insertions, 3 deletions
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 <arunisaac@systemreboot.net> +;;; Copyright © 2022, 2023 Arun Isaac <arunisaac@systemreboot.net> ;;; ;;; 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 <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 <commit>)) @@ -48,7 +48,7 @@ (string-append "A" (doc:commit-author commit)))) (define-method (document-recency-date (commit <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 <commit>)) |