Skip to content

Commit 7d10b3e

Browse files
trivial: fixes various typos (#19)
1 parent ad77c57 commit 7d10b3e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

build/Makefile.dev

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ _bindata:
3838
@ echo "-> Bundling $(BINDATA_FLAGS)templates as bindata for $(BINARY)..."
3939
@ cd pkg/formatter/templates && $(GOBIN)/go-bindata -nometadata -prefix templates -pkg templates $(BINDATA_FLAGS) ./...
4040

41-
## Formats the all Go files to the desired format.
41+
## Formats all Go files to the desired format.
4242
.PHONY: format
4343
format: deps
4444
@ echo "-> Formatting Go files..."
@@ -93,4 +93,4 @@ remove-fake-sdk:
9393
## Moves the git-hooks to the git hooks directory
9494
.PHONY: git-hooks
9595
git-hooks:
96-
@ cp scripts/hooks/* .git/hooks
96+
@ cp scripts/hooks/* .git/hooks

docs/ecctl-getting-started.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ If it’s your first time using {p}, use the `init` command to assist you in gen
107107
$ ecctl init
108108
Welcome to the Elastic Cloud CLI! This command will guide you through authenticating and setting some default values.
109109
110-
Missing configuration file, woud you like to initialise it? [y/n]: y
110+
Missing configuration file, would you like to initialise it? [y/n]: y
111111
Enter the URL of the Elastic Cloud API or your ECE installation: https://api.elastic-cloud.com
112112
113113
What default output format would you like?

pkg/ecctl/init.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ const (
5353
redacted = "[REDACTED]"
5454
settingsPathMsg = "Found existing settings in %s. Here's a JSON representation of what they look like:\n"
5555

56-
missingConfigMsg = `Missing configuration file, woud you like to initialise it? [y/n]: `
57-
existingConfigMsg = `Woud you like to change your current settings? [y/n]: `
56+
missingConfigMsg = `Missing configuration file, would you like to initialise it? [y/n]: `
57+
existingConfigMsg = `Would you like to change your current settings? [y/n]: `
5858

5959
hostMsg = "Enter the URL of the Elastic Cloud API or your ECE installation: "
6060

0 commit comments

Comments
 (0)