Skip to content

Commit

Permalink
style: consistent punctuation in command descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastiaan (Bas) Peters committed Jul 5, 2019
1 parent ea08310 commit aa18373
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion garden-service/src/commands/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { ConfigAnalyticsEnabled } from "./config-analytics-enabled"

export class ConfigCommand extends Command {
name = "config"
help = "Configure user and project settings"
help = "Configure user and project settings."

subCommands = [
ConfigAnalyticsEnabled,
Expand Down
2 changes: 1 addition & 1 deletion garden-service/src/commands/link/link.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { LinkModuleCommand } from "./module"

export class LinkCommand extends Command {
name = "link"
help = "Link a remote source or module to a local path"
help = "Link a remote source or module to a local path."

subCommands = [
LinkSourceCommand,
Expand Down
2 changes: 1 addition & 1 deletion garden-service/src/commands/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const tableConfig: CliTable.TableConstructorOptions = {

export class OptionsCommand extends Command {
name = "options"
help = "Print global options"
help = "Print global options."
noProject = true

description = "Prints all global options (options that can be applied to any command)."
Expand Down
2 changes: 1 addition & 1 deletion garden-service/src/commands/run/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { Garden } from "../../garden"

export class RunCommand extends Command {
name = "run"
help = "Run ad-hoc instances of your modules, services and tests"
help = "Run ad-hoc instances of your modules, services and tests."

subCommands = [
RunModuleCommand,
Expand Down
2 changes: 1 addition & 1 deletion garden-service/src/commands/unlink/unlink.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { UnlinkModuleCommand } from "./module"

export class UnlinkCommand extends Command {
name = "unlink"
help = "Unlink a remote source or module from its local path"
help = "Unlink a remote source or module from its local path."

subCommands = [
UnlinkSourceCommand,
Expand Down
2 changes: 1 addition & 1 deletion garden-service/src/commands/update-remote/update-remote.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { UpdateRemoteAllCommand } from "./all"

export class UpdateRemoteCommand extends Command {
name = "update-remote"
help = "Pulls the latest version of remote sources or modules from their repository"
help = "Pulls the latest version of remote sources or modules from their repository."

subCommands = [
UpdateRemoteSourcesCommand,
Expand Down

0 comments on commit aa18373

Please sign in to comment.