Skip to content

Commit 9b398d5

Browse files
committed
Tidy: Fix docstring indentation
1 parent 81f8339 commit 9b398d5

File tree

3 files changed

+50
-50
lines changed

3 files changed

+50
-50
lines changed

README.org

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1526,22 +1526,22 @@ These macros make comparing multiple forms easy:
15261526
;;;###autoload
15271527
(cl-defmacro bench-multi (&key (times 1) forms ensure-equal raw)
15281528
"Return Org table as a list with benchmark results for FORMS.
1529-
Runs FORMS with `benchmark-run-compiled' for TIMES iterations.
1529+
Runs FORMS with `benchmark-run-compiled' for TIMES iterations.
15301530

1531-
When ENSURE-EQUAL is non-nil, the results of FORMS are compared,
1532-
and an error is raised if they aren't `equal'. If the results
1533-
are sequences, the difference between them is shown with
1534-
`seq-difference'.
1531+
When ENSURE-EQUAL is non-nil, the results of FORMS are compared,
1532+
and an error is raised if they aren't `equal'. If the results are
1533+
sequences, the difference between them is shown with
1534+
`seq-difference'.
15351535

1536-
When RAW is non-nil, the raw results from
1537-
`benchmark-run-compiled' are returned instead of an Org table
1538-
list.
1536+
When RAW is non-nil, the raw results from
1537+
`benchmark-run-compiled' are returned instead of an Org table
1538+
list.
15391539

1540-
If the first element of a form is a string, it's used as the
1541-
form's description in the bench-multi-results; otherwise, forms
1542-
are numbered from 0.
1540+
If the first element of a form is a string, it's used as the
1541+
form's description in the bench-multi-results; otherwise, forms
1542+
are numbered from 0.
15431543

1544-
Before each form is run, `garbage-collect' is called."
1544+
Before each form is run, `garbage-collect' is called."
15451545
;; MAYBE: Since `bench-multi-lexical' byte-compiles the file, I'm not sure if
15461546
;; `benchmark-run-compiled' is necessary over `benchmark-run', or if it matters.
15471547
(declare (indent defun))

epdh.el

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -89,22 +89,22 @@ avoid counting existing garbage which needs collection."
8989
;;;###autoload
9090
(cl-defmacro bench-multi (&key (times 1) forms ensure-equal raw)
9191
"Return Org table as a list with benchmark results for FORMS.
92-
Runs FORMS with `benchmark-run-compiled' for TIMES iterations.
92+
Runs FORMS with `benchmark-run-compiled' for TIMES iterations.
9393
94-
When ENSURE-EQUAL is non-nil, the results of FORMS are compared,
95-
and an error is raised if they aren't `equal'. If the results
96-
are sequences, the difference between them is shown with
97-
`seq-difference'.
94+
When ENSURE-EQUAL is non-nil, the results of FORMS are compared,
95+
and an error is raised if they aren't `equal'. If the results are
96+
sequences, the difference between them is shown with
97+
`seq-difference'.
9898
99-
When RAW is non-nil, the raw results from
100-
`benchmark-run-compiled' are returned instead of an Org table
101-
list.
99+
When RAW is non-nil, the raw results from
100+
`benchmark-run-compiled' are returned instead of an Org table
101+
list.
102102
103-
If the first element of a form is a string, it's used as the
104-
form's description in the bench-multi-results; otherwise, forms
105-
are numbered from 0.
103+
If the first element of a form is a string, it's used as the
104+
form's description in the bench-multi-results; otherwise, forms
105+
are numbered from 0.
106106
107-
Before each form is run, `garbage-collect' is called."
107+
Before each form is run, `garbage-collect' is called."
108108
;; MAYBE: Since `bench-multi-lexical' byte-compiles the file, I'm not sure if
109109
;; `benchmark-run-compiled' is necessary over `benchmark-run', or if it matters.
110110
(declare (indent defun))

0 commit comments

Comments
 (0)