Skip to content

Commit

Permalink
fix: capitalizing markdown in command help screens
Browse files Browse the repository at this point in the history
  • Loading branch information
erunion committed Jul 21, 2022
1 parent b9561a6 commit c7e53a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cmds/docs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports = class DocsCommand {
constructor() {
this.command = 'docs';
this.usage = 'docs <folder> [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;

Expand Down
2 changes: 1 addition & 1 deletion src/cmds/docs/single.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports = class SingleDocCommand {
constructor() {
this.command = 'docs:single';
this.usage = 'docs:single <filepath> [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;

Expand Down

0 comments on commit c7e53a2

Please sign in to comment.