summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/benchmark.el
diff options
context:
space:
mode:
authorStefan Kangas <stefankangas@gmail.com>2022-09-20 12:21:40 +0200
committerStefan Kangas <stefankangas@gmail.com>2022-09-20 12:21:40 +0200
commit616dcf27e57388403d4c28d441bf7310bb665241 (patch)
treea8a30b8e0e24e7d0fa33fa17b7972d3791be57c8 /lisp/emacs-lisp/benchmark.el
parent540585254133af722739339ef420e68e09fe62e5 (diff)
downloademacs-616dcf27e57388403d4c28d441bf7310bb665241.tar.gz
emacs-616dcf27e57388403d4c28d441bf7310bb665241.tar.bz2
emacs-616dcf27e57388403d4c28d441bf7310bb665241.zip
; Fix typos in Lisp symbols
Diffstat (limited to 'lisp/emacs-lisp/benchmark.el')
-rw-r--r--lisp/emacs-lisp/benchmark.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/benchmark.el b/lisp/emacs-lisp/benchmark.el
index c5f621c6c86..7535f0e2f51 100644
--- a/lisp/emacs-lisp/benchmark.el
+++ b/lisp/emacs-lisp/benchmark.el
@@ -70,7 +70,7 @@ number of repetitions actually used."
(defun benchmark--adaptive (func time)
"Measure the run time of FUNC, calling it enough times to last TIME seconds.
-Result is (REPETITIONS . DATA) where DATA is as returned by `branchmark-call'."
+Result is (REPETITIONS . DATA) where DATA is as returned by `benchmark-call'."
(named-let loop ((repetitions 1)
(data (let ((x (list 0))) (setcdr x x) x)))
;; (message "Running %d iteration" repetitions)