diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2022-09-20 12:21:40 +0200 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2022-09-20 12:21:40 +0200 |
commit | 616dcf27e57388403d4c28d441bf7310bb665241 (patch) | |
tree | a8a30b8e0e24e7d0fa33fa17b7972d3791be57c8 /lisp/emacs-lisp/benchmark.el | |
parent | 540585254133af722739339ef420e68e09fe62e5 (diff) | |
download | emacs-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.el | 2 |
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) |