summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tissue/commit.scm6
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>))