aboutsummaryrefslogtreecommitdiff
path: root/compat-tests.el
diff options
context:
space:
mode:
Diffstat (limited to 'compat-tests.el')
-rw-r--r--compat-tests.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/compat-tests.el b/compat-tests.el
index 88992f6..6b41482 100644
--- a/compat-tests.el
+++ b/compat-tests.el
@@ -2023,10 +2023,10 @@
(ert-deftest compat-string-search ()
;; Find needle at the beginning of a haystack:
(should-equal 0 (string-search "a" "abb"))
- ;; Find needle at the begining of a haystack, with more potential
+ ;; Find needle at the beginning of a haystack, with more potential
;; needles that could be found:
(should-equal 0 (string-search "a" "abba"))
- ;; Find needle with more than one charachter at the beginning of
+ ;; Find needle with more than one character at the beginning of
;; a line:
(should-equal 0 (string-search "aa" "aabbb"))
;; Find a needle midstring: