emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] externals/vc-got 7726b6c 097/145: silence some checkdoc warnings


From: ELPA Syncer
Subject: [elpa] externals/vc-got 7726b6c 097/145: silence some checkdoc warnings
Date: Thu, 9 Sep 2021 15:58:41 -0400 (EDT)

branch: externals/vc-got
commit 7726b6c92c1c3f353d2fa12fc8c2eff2f53fd156
Author: Omar Polo <op@omarpolo.com>
Commit: Omar Polo <op@omarpolo.com>

    silence some checkdoc warnings
---
 vc-got.el | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/vc-got.el b/vc-got.el
index 01f2e51..1da7887 100755
--- a/vc-got.el
+++ b/vc-got.el
@@ -18,7 +18,7 @@
 ;; You should have received a copy of the GNU General Public License
 ;; along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
-;;; Commentary
+;;; Commentary:
 
 ;; Backend implementation status
 ;;
@@ -532,7 +532,8 @@ FILES is nil, consider all the files in DIR."
 ;; state-changing functions
 
 (defun vc-got-create-repo (_backend)
-  (error "vc got: create-repo not implemented"))
+  "Create an empty repository in the current directory."
+  (error "[vc-got] create-repo not implemented"))
 
 (defun vc-got-register (files &optional _comment)
   "Register FILES, passing `vc-register-switches' to the backend command."
@@ -569,7 +570,7 @@ FILES is nil, consider all the files in DIR."
 (defun vc-got-checkout (_file &optional _rev)
   "Checkout revision REV of FILE.
 If REV is t, checkout from the head."
-  (error "vc got: checkout not implemented"))
+  (error "[vc-got] checkout not implemented"))
 
 (defun vc-got-revert (file &optional _content-done)
   "Revert FILE back to working revision."



reply via email to

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