summaryrefslogtreecommitdiff
path: root/lisp/gnus-msg.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/gnus-msg.el')
-rw-r--r--lisp/gnus-msg.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gnus-msg.el b/lisp/gnus-msg.el
index ea52c043c17..6f6c97e7f7a 100644
--- a/lisp/gnus-msg.el
+++ b/lisp/gnus-msg.el
@@ -580,7 +580,7 @@ will attempt to use the foreign server to post the article."
(match-beginning 0)))
;; Correct newsgroups field: change sequence of spaces to comma and
- ;; eliminate spaces around commas. Eliminate imbedded line breaks.
+ ;; eliminate spaces around commas. Eliminate embedded line breaks.
(goto-char (point-min))
(if (re-search-forward "^Newsgroups: +" nil t)
(save-restriction
@@ -1353,7 +1353,7 @@ domain is undefined, the domain name is got from it."
;; You might for example insert a "." somewhere (not next to another dot
;; or string boundary), or modify the newsreader name to "Ding".
(defun gnus-inews-unique-id ()
- ;; Dont use microseconds from (current-time), they may be unsupported.
+ ;; Don't use microseconds from (current-time), they may be unsupported.
;; Instead we use this randomly inited counter.
(setq gnus-unique-id-char
(% (1+ (or gnus-unique-id-char (logand (random t) (1- (lsh 1 20)))))