Skip to content

Commit 4afe4cf

Browse files
committed
Spelling
* access * adminclient * ampersand * and * ascii * associated * auto-detected * browser * certificate * certificates * characters * command * compatibility * consist * decodes * digital * distinguished * doesn't * encoded * encrypted * encrypting * entities * error * extension * from the * from * github * herd * inspecting * interchangeable * interchangeably * issuing * json * macos * mixed * onboarding * outer * parameter * parses * password * preexisting * processed * publickey * reference * remaining * renegotiate * represents * secrecy * serialization * smartypants * smartypantsable * subcommand * subject * subtle * suppression * the * tidiness * too-soon * truststore * unmarshaling * use * wrapping Signed-off-by: Josh Soref <[email protected]>
1 parent 9feb476 commit 4afe4cf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+114
-114
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
prerelease: ${{ steps.is_prerelease.outputs.IS_PRERELEASE }}
4848

4949
goreleaser:
50-
name: Upload Assets to Github w/ goreleaser
50+
name: Upload Assets to GitHub w/ goreleaser
5151
runs-on: ubuntu-latest
5252
needs: create_release
5353
steps:
@@ -177,12 +177,12 @@ jobs:
177177
token: ${{ secrets.DOCS_PAT }}
178178
path: './docs'
179179
- name: Update Reference
180-
id: update_refrence
180+
id: update_reference
181181
run: |
182182
./bin/step help --markdown ./docs/src/pages/docs/step-cli/reference
183183
cd ./docs
184184
git config user.email "[email protected]"
185-
git config user.name "Github Action CI"
185+
git config user.name "GitHub Action CI"
186186
git add . && git commit -a -m "step-cli ${{ needs.create_release.outputs.vversion }} reference update"
187187
- name: Push changes
188188
uses: ad-m/[email protected]

.goreleaser.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ release:
169169
- 📦 [step-cli_{{ .Version }}_amd64.deb](https://dl.step.sm/gh-release/cli/gh-release-header/{{ .Tag }}/step-cli_{{ .Version }}_amd64.deb)
170170
- 📦 [step-cli_{{ .Version }}_amd64.rpm](https://dl.step.sm/gh-release/cli/gh-release-header/{{ .Tag }}/step-cli_{{ .Version }}_amd64.rpm)
171171
172-
#### OSX Darwin
172+
#### macOS Darwin
173173
174174
- 📦 [step_darwin_{{ .Version }}_amd64.tar.gz](https://dl.step.sm/gh-release/cli/gh-release-header/{{ .Tag }}/step_darwin_{{ .Version }}_amd64.tar.gz)
175175
- 📦 [step_darwin_{{ .Version }}_arm64.tar.gz](https://dl.step.sm/gh-release/cli/gh-release-header/{{ .Tag }}/step_darwin_{{ .Version }}_arm64.tar.gz)
@@ -212,7 +212,7 @@ release:
212212
# Defaults to false.
213213
#disable: true
214214

215-
# You can add extra pre-existing files to the release.
215+
# You can add extra preexisting files to the release.
216216
# The filename on the release will be the last part of the path (base). If
217217
# another file with the same name exists, the latest one found will be used.
218218
# Defaults to empty.

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,11 +163,11 @@ to the value of provisioner-password-file flag.
163163

164164
## [0.0.2]
165165
### Added
166-
- `--bundle` flag to cert/inspect for inpecting all the full chain or bundle
166+
- `--bundle` flag to cert/inspect for inspecting all the full chain or bundle
167167
given a path. Default behavior is unchanged; only inspect the first (leaf)
168168
certificate.
169169
- distribution.md with documentation on how to create releases.
170-
- travis build and upload artifacts to Github Releases on tagged pushes.
170+
- travis build and upload artifacts to GitHub Releases on tagged pushes.
171171
- logging of invalid http requests to the oauth server
172172
### Changed
173173
- default PEM format encryption alg AES128 -> AES256

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ define BUNDLE
9191
# $(2) -- Binary Output Dir Name
9292
# $(3) -- Step Platform Name
9393
# $(4) -- Step Binary Architecture
94-
# $(5) -- Step Binary Name (For Windows Comaptibility)
94+
# $(5) -- Step Binary Name (For Windows Compatibility)
9595
$(q) ./make/bundle.sh $(1) "$(BINARY_OUTPUT)$(2)" "$(RELEASE)" "$(VERSION)" "$(3)" "$(4)" "$(5)"
9696
endef
9797

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Step CLI's command groups illustrate its wide-ranging uses:
2727

2828
- [`step certificate`](https://smallstep.com/docs/step-cli/reference/certificate/): Work with X.509 (TLS/HTTPS) certificates.
2929
- Create, revoke, validate, lint, and bundle X.509 certificates.
30-
- Install (and remove) X.509 certificates into your system's (and brower's) trust store.
30+
- Install (and remove) X.509 certificates into your system's (and browser's) trust store.
3131
- Validate certificate deployment and renewal status for automation
3232
- Create key pairs (RSA, ECDSA, EdDSA) and certificate signing requests (CSRs)
3333
- [Sign CSRs](https://smallstep.com/docs/step-cli/reference/certificate/sign/)

autocomplete/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
## Deprecated
2-
The files in this folder are deprecated and will be removed in the future. The prefered way to acces the completion scripts is through `step completion <shell>`.
2+
The files in this folder are deprecated and will be removed in the future. The prefered way to access the completion scripts is through `step completion <shell>`.

command/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ required, and ensuring they're printed out as a part of the `step help` or
7979
`step <command> -h` flow. If you need to add a different type of annotation to
8080
document an argument just add it to the `usage.Argument` struct!
8181

82-
When you add a flag, look into the pre-existing ones inside the `flags`
83-
package. Could you use one of the pre-existing flags in order to reduce
82+
When you add a flag, look into the preexisting ones inside the `flags`
83+
package. Could you use one of the preexisting flags in order to reduce
8484
duplication? If not, make sure to add a flag so it could be used in future!
8585

8686
The `errs` package contains functionality for defining and working with errors

command/base64/base64.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ YWJjMTIzJCVeJiooKV8rLT1-Cg==
5353
'''
5454
5555
Decode an url encoded base64 string. The encoding type can be enforced
56-
using the '-u' or '-r' flags, but it will be autodetected if they are not
56+
using the '-u' or '-r' flags, but it will be auto-detected if they are not
5757
passed:
5858
'''
5959
$ echo YWJjMTIzJCVeJiooKV8rLT1-Cg== | step base64 -d

command/ca/ca.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ $ step ca renew internal.crt internal.key \
7474
revokeCertificateCommand(),
7575
provisioner.Command(),
7676
signCertificateCommand(),
77-
rootComand(),
77+
rootCommand(),
7878
rootsCommand(),
7979
federationCommand(),
8080
acme.Command(),

command/ca/provisioner/caConfigClient.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"go.step.sm/linkedca"
1313
)
1414

15-
// nodb implements the certificates/Admiclient interface with noops.
15+
// nodb implements the certificates/Adminclient interface with noops.
1616
type nodb struct{}
1717

1818
func newNoDB() *nodb {
@@ -179,7 +179,7 @@ func (client *caConfigClient) loadProvisioner(opts ...ca.ProvisionerOption) (pro
179179
return nil, errors.New("provisioner options must define either ID or Name to remove")
180180
}
181181

182-
return prov, errors.Wrapf(err, "erorr loading provisioner")
182+
return prov, errors.Wrapf(err, "error loading provisioner")
183183
}
184184

185185
func (client *caConfigClient) GetProvisioners(opts ...ca.ProvisionerOption) (provisioner.List, error) {

0 commit comments

Comments
 (0)