]> git.eshelyaron.com Git - emacs.git/commitdiff
; * test/lisp/emacs-lisp/generator-tests.el: Checkdoc fixes
authorPhilipp Stephani <phst@google.com>
Wed, 10 Jun 2020 13:49:57 +0000 (15:49 +0200)
committerPhilipp Stephani <phst@google.com>
Wed, 10 Jun 2020 13:49:57 +0000 (15:49 +0200)
test/lisp/emacs-lisp/generator-tests.el

index 0d325f1485a61773c0f4334ec267514dbe4e6968..bcfab2016369b6f7c59a41eb387ab32a63ea1c48 100644 (file)
@@ -26,6 +26,8 @@
 (require 'ert)
 (require 'cl-lib)
 
+;;; Code:
+
 (defun generator-list-subrs ()
   (cl-loop for x being the symbols
         when (and (fboundp x)
@@ -38,8 +40,7 @@
 `cps-testcase' defines an ERT testcase called NAME that evaluates
 BODY twice: once using ordinary `eval' and once using
 lambda-generators.  The test ensures that the two forms produce
-identical output.
-"
+identical output."
   `(progn
      (ert-deftest ,name ()
        (should
@@ -302,3 +303,5 @@ identical output.
                                             (lambda (it) (- it))
                                             (1+ it)))))))
                  -2)))
+
+;;; generator-tests.el ends here