Skip to content

Commit 6eee86c

Browse files
committed
chore: fix lint
1 parent cd6328b commit 6eee86c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ditamap/command.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export class Command extends Ditamap {
5252
if (Array.isArray(command.examples)) {
5353
if (
5454
help.includes('Examples:') &&
55-
command.examples.map((foundAll, example) => foundAll && help.includes(example), true)
55+
command.examples.map((example, foundAll) => foundAll && help.includes(example), true)
5656
) {
5757
// Examples are already in the help, so don't duplicate.
5858
// This is legacy support for ToolbeltCommand in salesforce-alm.

0 commit comments

Comments
 (0)