summaryrefslogtreecommitdiff
path: root/lisp/hexl.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2018-02-16 15:16:15 -0500
committerGlenn Morris <rgm@gnu.org>2018-02-16 15:16:15 -0500
commit66a4e651f3cf38c320d1a9d5ae6f88dcc641792b (patch)
tree0fa5ba9ab57893ae3bca46bd09d8b52105f8a17a /lisp/hexl.el
parent35e5c57db311c3d6c1c3a8dd4edc3d756d1d5d24 (diff)
downloademacs-66a4e651f3cf38c320d1a9d5ae6f88dcc641792b.tar.gz
; Fix doc typos related to indefinite articles
Diffstat (limited to 'lisp/hexl.el')
-rw-r--r--lisp/hexl.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/hexl.el b/lisp/hexl.el
index 681a26b6809..d716405f97a 100644
--- a/lisp/hexl.el
+++ b/lisp/hexl.el
@@ -890,7 +890,7 @@ This discards the buffer's undo information."
(error "Invalid hex digit `%c'" ch)))))
(defun hexl-oct-char-to-integer (character)
- "Take a char and return its value as if it was a octal digit."
+ "Take a char and return its value as if it was an octal digit."
(if (and (>= character ?0) (<= character ?7))
(- character ?0)
(error "Invalid octal digit `%c'" character)))