Skip to content

Commit

Permalink
style: consistent punctuation in command descriptions (#919)
Browse files Browse the repository at this point in the history
* style: consistent punctuation in command descriptions
  • Loading branch information
baspetersdotjpeg authored and edvald committed Jul 8, 2019
1 parent 174e3e1 commit 8ca0813
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/reference/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ Examples:

### garden options

Print global options
Print global options.

Prints all global options (options that can be applied to any command).

Expand Down
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 8ca0813

Please sign in to comment.