Skip to content

Commit

Permalink
fix: correct spacing in markdown file
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Sep 12, 2022
1 parent c0eb760 commit 87f18ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/dev/generate/flag.ts
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ export default class DevGenerateFlag extends SfCommand<void> {

private async updateMarkdownFile(commandName: string, flagName: string): Promise<void> {
const filePath = path.join('messages', `${commandName.split(':').join('.')}.md`);
await fs.appendFile(filePath, `# flags.${flagName}.summary\n\nDescription of ${flagName}.\n`);
await fs.appendFile(filePath, `\n# flags.${flagName}.summary\n\nDescription of ${flagName}.\n`);
}

private constructFlag(answers: Answers): string[] {
Expand Down

0 comments on commit 87f18ec

Please sign in to comment.