diff --git a/docs/reference/commands.md b/docs/reference/commands.md index 04c93d0f1e..1edf712304 100644 --- a/docs/reference/commands.md +++ b/docs/reference/commands.md @@ -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). diff --git a/garden-service/src/commands/config/config.ts b/garden-service/src/commands/config/config.ts index 0e703a53a8..52d5583b05 100644 --- a/garden-service/src/commands/config/config.ts +++ b/garden-service/src/commands/config/config.ts @@ -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, diff --git a/garden-service/src/commands/link/link.ts b/garden-service/src/commands/link/link.ts index ccdeffb068..3aa0d69f57 100644 --- a/garden-service/src/commands/link/link.ts +++ b/garden-service/src/commands/link/link.ts @@ -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, diff --git a/garden-service/src/commands/options.ts b/garden-service/src/commands/options.ts index 8bd2499cfa..20e546dc60 100644 --- a/garden-service/src/commands/options.ts +++ b/garden-service/src/commands/options.ts @@ -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)." diff --git a/garden-service/src/commands/run/run.ts b/garden-service/src/commands/run/run.ts index 74aadd0a25..75082db21b 100644 --- a/garden-service/src/commands/run/run.ts +++ b/garden-service/src/commands/run/run.ts @@ -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, diff --git a/garden-service/src/commands/unlink/unlink.ts b/garden-service/src/commands/unlink/unlink.ts index 97b067c45c..03c1d19555 100644 --- a/garden-service/src/commands/unlink/unlink.ts +++ b/garden-service/src/commands/unlink/unlink.ts @@ -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, diff --git a/garden-service/src/commands/update-remote/update-remote.ts b/garden-service/src/commands/update-remote/update-remote.ts index 0e06a7dd24..9fbf313403 100644 --- a/garden-service/src/commands/update-remote/update-remote.ts +++ b/garden-service/src/commands/update-remote/update-remote.ts @@ -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,