diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2014-09-11 12:44:25 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2014-09-11 12:44:25 -0700 |
commit | 0f2ed59206faf8d71c71203613a715c6aa187c3e (patch) | |
tree | 7da027a3fc4ed89cb156052fe0c481b7d70f71f7 /test | |
parent | 1dd1218653be3425e7f53ea1cfcb0d14addfaa05 (diff) | |
download | emacs-0f2ed59206faf8d71c71203613a715c6aa187c3e.tar.gz |
Spelling fixes.
* lisp/ses.el (ses-file-format-extend-parameter-list): Rename from
ses-file-format-extend-paramter-list. All uses changed.
* lisp/gnus-cloud.el (gnus-cloud-parse-version-1): Fix misspelling
of ":delete".
Diffstat (limited to 'test')
-rw-r--r-- | test/automated/subr-x-tests.el | 12 | ||||
-rw-r--r-- | test/automated/tildify-tests.el | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/test/automated/subr-x-tests.el b/test/automated/subr-x-tests.el index df8412699a4..03541f173f0 100644 --- a/test/automated/subr-x-tests.el +++ b/test/automated/subr-x-tests.el @@ -165,7 +165,7 @@ (list 1 2 3)))) (ert-deftest subr-x-test-if-let-false () - "Test `if-let' with falsey bindings." + "Test `if-let' with falsie bindings." (should (equal (if-let (a nil) (list a b c) @@ -205,8 +205,8 @@ "no") (list 1 2 3)))) -(ert-deftest subr-x-test-if-let-and-lazyness-is-preserved () - "Test `if-let' respects `and' lazyness." +(ert-deftest subr-x-test-if-let-and-laziness-is-preserved () + "Test `if-let' respects `and' laziness." (let (a-called b-called c-called) (should (equal (if-let ((a nil) @@ -360,7 +360,7 @@ (list 1 2 3)))) (ert-deftest subr-x-test-when-let-false () - "Test `when-let' with falsey bindings." + "Test `when-let' with falsie bindings." (should (equal (when-let (a nil) (list a b c) @@ -399,8 +399,8 @@ (list a b c)) (list 1 2 3)))) -(ert-deftest subr-x-test-when-let-and-lazyness-is-preserved () - "Test `when-let' respects `and' lazyness." +(ert-deftest subr-x-test-when-let-and-laziness-is-preserved () + "Test `when-let' respects `and' laziness." (let (a-called b-called c-called) (should (equal (progn diff --git a/test/automated/tildify-tests.el b/test/automated/tildify-tests.el index 86c83d7ac5b..53c2e620195 100644 --- a/test/automated/tildify-tests.el +++ b/test/automated/tildify-tests.el @@ -1,4 +1,4 @@ -;;; tildify-test.el --- ERT tests for teldify.el +;;; tildify-test.el --- ERT tests for tildify.el ;; Copyright (C) 2014 Free Software Foundation, Inc. |