From 0f5b10d90e1990f3557b67cbe81b72c0ced923ae Mon Sep 17 00:00:00 2001 From: Olaf Alders Date: Tue, 15 Mar 2022 19:32:45 -0400 Subject: [PATCH] docs: distinguish between "setup" (noun) and "set up" (verb) in docs --- docs/docs/contributing-plastic.md | 6 +++--- docs/docs/install-linux.mdx | 2 +- docs/docs/install-macos.mdx | 2 +- docs/docs/install-windows.mdx | 2 +- src/cli/prompt.go | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/docs/contributing-plastic.md b/docs/docs/contributing-plastic.md index 188efd59..c0643da3 100644 --- a/docs/docs/contributing-plastic.md +++ b/docs/docs/contributing-plastic.md @@ -8,7 +8,7 @@ When changing the `segment_plastic.go` file, you may need to test your changes a [Plastic SCM][plastic]. This doc should bring you up to speed with Plastic SCM. In the [contributing doc][contributing] there is a section about [dev containers & codespaces][devcontainer]. -You can setup Plastic SCM inside these as well. +You can set up Plastic SCM inside these as well. ## Server Setup @@ -87,7 +87,7 @@ sudo apt-get install plasticscm-client-core ### Client configuration -To connect the client to the server and setup an account run: +To connect the client to the server and set up an account run: ```bash clconfigureclient @@ -111,7 +111,7 @@ cm li ## Testing stuff -Now to the fun part! The server is automatically setup to host a `default` repo with the branch `/main`. +Now to the fun part! The server is automatically set up to host a `default` repo with the branch `/main`. The Plastic SCM CLI command is: `cm` diff --git a/docs/docs/install-linux.mdx b/docs/docs/install-linux.mdx index f15a26bd..41244940 100644 --- a/docs/docs/install-linux.mdx +++ b/docs/docs/install-linux.mdx @@ -8,7 +8,7 @@ import Tabs from "@theme/Tabs"; import TabItem from "@theme/TabItem"; import InstallHomebrew from "./install-homebrew.mdx"; -## Setup your terminal +## Set up your terminal Oh My Posh uses ANSI color codes under the hood, these should work in every terminal, but you may have to set the environment variable `$TERM` to `xterm-256color` for it to work. diff --git a/docs/docs/install-macos.mdx b/docs/docs/install-macos.mdx index 6c24edc2..ff79938f 100644 --- a/docs/docs/install-macos.mdx +++ b/docs/docs/install-macos.mdx @@ -8,7 +8,7 @@ import Tabs from "@theme/Tabs"; import TabItem from "@theme/TabItem"; import InstallHomebrew from "./install-homebrew.mdx"; -## Setup your terminal +## Set up your terminal As the standard terminal has issues displaying the ANSI characters correctly, we advise using [iTerm2][iterm2] or any other modern day MacOS terminal that supports ANSI characters. diff --git a/docs/docs/install-windows.mdx b/docs/docs/install-windows.mdx index 0cab7f28..49458920 100644 --- a/docs/docs/install-windows.mdx +++ b/docs/docs/install-windows.mdx @@ -7,7 +7,7 @@ sidebar_label: ⊞ Windows import Tabs from "@theme/Tabs"; import TabItem from "@theme/TabItem"; -## Setup your terminal +## Set up your terminal While Oh My Posh works on the standard terminal, we advise using the [Windows Terminal][wt]. diff --git a/src/cli/prompt.go b/src/cli/prompt.go index 39b3a524..323f0849 100644 --- a/src/cli/prompt.go +++ b/src/cli/prompt.go @@ -11,8 +11,8 @@ import ( // promptCmd represents the prompt command var promptCmd = &cobra.Command{ Use: "prompt", - Short: "Setup the prompt for your shell", - Long: `Setup the prompt for your shell + Short: "Set up the prompt for your shell", + Long: `Set up the prompt for your shell Allows to initialize one of the supported shells, or to set the prompt manually for a custom shell.`, Run: func(cmd *cobra.Command, args []string) {}, }