From c7e53a24d16ed3f262cfad8275b9008854ddab0d Mon Sep 17 00:00:00 2001 From: Jon Ursenbach Date: Thu, 21 Jul 2022 09:13:39 -0700 Subject: [PATCH] fix: capitalizing `markdown` in command help screens --- src/cmds/docs/index.js | 2 +- src/cmds/docs/single.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cmds/docs/index.js b/src/cmds/docs/index.js index 52c596dc5..62c7cb4b8 100644 --- a/src/cmds/docs/index.js +++ b/src/cmds/docs/index.js @@ -16,7 +16,7 @@ module.exports = class DocsCommand { constructor() { this.command = 'docs'; this.usage = 'docs [options]'; - this.description = 'Sync a folder of markdown files to your ReadMe project.'; + this.description = 'Sync a folder of Markdown files to your ReadMe project.'; this.category = 'docs'; this.position = 1; diff --git a/src/cmds/docs/single.js b/src/cmds/docs/single.js index 0c511640a..f0d95fc29 100644 --- a/src/cmds/docs/single.js +++ b/src/cmds/docs/single.js @@ -16,7 +16,7 @@ module.exports = class SingleDocCommand { constructor() { this.command = 'docs:single'; this.usage = 'docs:single [options]'; - this.description = 'Sync a single markdown file to your ReadMe project.'; + this.description = 'Sync a single Markdown file to your ReadMe project.'; this.category = 'docs'; this.position = 3;