aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSean Whitton2025-04-27 11:59:17 +0800
committerSean Whitton2025-04-27 11:59:17 +0800
commitb5967dda32dd9091389e30d8aaa46bdf8319d3e8 (patch)
tree16cbcdb76987d120f26a758e25b48bc457551bf3
parentbe4819bd578b696a4692cf7cc1b3d52390a65129 (diff)
downloademacs-b5967dda32dd9091389e30d8aaa46bdf8319d3e8.tar.gz
emacs-b5967dda32dd9091389e30d8aaa46bdf8319d3e8.zip
; * doc/misc/ert.texi (Introduction): Be more Lisp-specific.
-rw-r--r--doc/misc/ert.texi10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/misc/ert.texi b/doc/misc/ert.texi
index fdf2b2b8aaf..bde76d79394 100644
--- a/doc/misc/ert.texi
+++ b/doc/misc/ert.texi
@@ -134,11 +134,11 @@ package @file{pp.el}):
134;; (pp-to-string '('a 'b)) ; same as above 134;; (pp-to-string '('a 'b)) ; same as above
135@end lisp 135@end lisp
136 136
137The code contained in these comments can be evaluated from time to 137The Lisp forms contained in these comments can be evaluated from time to
138time to compare the output with the expected output. ERT formalizes 138time, e.g. with @kbd{C-x C-e}, to compare the output with the expected
139this and introduces a common convention, which simplifies Emacs 139output. ERT formalizes this and introduces a common convention, which
140development, since programmers no longer have to manually find and 140simplifies Emacs development, since programmers no longer have to
141evaluate such comments. 141manually find and evaluate such comments.
142 142
143An ERT test definition equivalent to the above comments is this: 143An ERT test definition equivalent to the above comments is this:
144 144