aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Cassou <damien@cassou.me>2019-11-26 20:50:39 +0100
committerWilfred Hughes <me@wilfred.me.uk>2019-11-27 13:04:27 +0000
commitedddccbebd82dde0a18662a0995bfe930112458c (patch)
treecf22e712e412661e1425c196dc081b03d25cdbf1
parente2609e4ae9e058bd8be6239681b2f22195628f28 (diff)
Fix typos
Typos found with codespell.
-rw-r--r--CHANGELOG.md2
-rw-r--r--test/helpful-unit-test.el2
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index fef5657..d193500 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -48,7 +48,7 @@ Set `comment-start` inside helpful buffers, to fix external packages
relying on that variable.
Helpful now always autoloads callables if they aren't already
-loaded. This is consistent with help.el (unless you've overriden
+loaded. This is consistent with help.el (unless you've overridden
`help-enable-auto-load`), produces more useful results, and fixes
crashes rendering some docstrings.
diff --git a/test/helpful-unit-test.el b/test/helpful-unit-test.el
index 596bd8c..d296423 100644
--- a/test/helpful-unit-test.el
+++ b/test/helpful-unit-test.el
@@ -228,7 +228,7 @@ symbol (not a form)."
;; If the second line is already empty, do nothing.
(should
(equal (helpful--split-first-line "foo.\n\nbar") "foo.\n\nbar"))
- ;; But if we have a single sentence and no empy line, insert one.
+ ;; But if we have a single sentence and no empty line, insert one.
(should
(equal (helpful--split-first-line "foo.\nbar") "foo.\n\nbar")))