From 7ecd0f28f88516a5d57aa063e6b28651aaf7d3de Mon Sep 17 00:00:00 2001 From: JenChieh Date: Fri, 28 Jun 2024 23:28:40 -0700 Subject: [PATCH] fix: Docstring --- centaur-tabs-functions.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/centaur-tabs-functions.el b/centaur-tabs-functions.el index 0c9188e..d9123c5 100644 --- a/centaur-tabs-functions.el +++ b/centaur-tabs-functions.el @@ -389,14 +389,14 @@ That is, remove it from the tab sets store." (mapcar 'centaur-tabs-tab-value (centaur-tabs-tabs tabset))) (defun centaur-tabs-get-cache (cache key) - "Return the per-frame cached value of KEY in CACHE." + "Return the cached value of KEY in CACHE." (when-let* ((cache (format "%s" cache)) (cached-hash (gethash cache centaur-tabs-display-hash)) ((hash-table-p cached-hash))) (gethash key cached-hash nil))) (defun centaur-tabs-put-cache (cache key value) - "Set the per-frame cached value of KEY in CACHE to VALUE." + "Set the cached value of KEY in CACHE to VALUE." (let* ((cache (format "%s" cache)) (cached-hash (gethash cache centaur-tabs-display-hash)) (hash (if (hash-table-p cached-hash) cached-hash (make-hash-table))))