We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd6328b commit 6eee86cCopy full SHA for 6eee86c
src/ditamap/command.ts
@@ -52,7 +52,7 @@ export class Command extends Ditamap {
52
if (Array.isArray(command.examples)) {
53
if (
54
help.includes('Examples:') &&
55
- command.examples.map((foundAll, example) => foundAll && help.includes(example), true)
+ command.examples.map((example, foundAll) => foundAll && help.includes(example), true)
56
) {
57
// Examples are already in the help, so don't duplicate.
58
// This is legacy support for ToolbeltCommand in salesforce-alm.
0 commit comments