From: Tino Calancha <tino.calancha@gmail.com>
Date: Sun, 13 Aug 2017 14:38:29 +0000 (+0900)
Subject: * lisp/tar-mode.el (tar-grind-file-mode): Fix docstring
X-Git-Tag: emacs-26.0.90~473
X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=00bc04f60614907c8042a9f2eb73cc8062006649;p=emacs.git

* lisp/tar-mode.el (tar-grind-file-mode): Fix docstring
---

diff --git a/lisp/tar-mode.el b/lisp/tar-mode.el
index 1d453d2980e..b0d31776942 100644
--- a/lisp/tar-mode.el
+++ b/lisp/tar-mode.el
@@ -469,7 +469,7 @@ checksum before doing the check."
     (concat " " (substring str 4 16) (format-time-string " %Y" time))))
 
 (defun tar-grind-file-mode (mode)
-  "Construct a `-rw--r--r--' string indicating MODE.
+  "Construct a `rw-r--r--' string indicating MODE.
 MODE should be an integer which is a file mode value."
   (string
    (if (zerop (logand 256 mode)) ?- ?r)