Skip to content

Commit 8978498

Browse files
committed
Fix typos
1 parent baaf9bb commit 8978498

File tree

28 files changed

+38
-38
lines changed

28 files changed

+38
-38
lines changed

changelog/v0.10.11/git-mv.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
changelog:
22
- type: NEW_FEATURE
3-
description: Add utilites to help move and inspect files in a repo.
3+
description: Add utilities to help move and inspect files in a repo.
44
issueLink: https://github.com/solo-io/go-utils/issues/298

changelog/v0.10.27/logrus.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
changelog:
22
- type: FIX
3-
description: Change how logrus dependency is handled to aovid downstream problems.
3+
description: Change how logrus dependency is handled to avoid downstream problems.
44
issueLink: https://github.com/solo-io/go-utils/issues/340
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
changelog:
22
- type: NON_USER_FACING
3-
description: added ability to validate changelogs in a subdirectory by specifying `activeSubdirectory` in "validation.yaml". This should enable users to have less sprawling changelog directorys as time progresses.
3+
description: added ability to validate changelogs in a subdirectory by specifying `activeSubdirectory` in "validation.yaml". This should enable users to have less sprawling changelog directories as time progresses.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
changelog:
22
- type: NEW_FEATURE
3-
description: Add a tiemout to the cluster lock.
3+
description: Add a timeout to the cluster lock.
44
issueLink: https://github.com/solo-io/go-utils/issues/72

changelog/v0.7.14/clicore.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ changelog:
44
Introduce a utility for managing zap logs from a CLI tool. The new `clicore`
55
library provides a means of sending human-friendly log messages to the console
66
while capturing full json-formatted logs to a file. Library includes a pair of
7-
`Run` methods for siplified execution of the "main" file and simplified output
7+
`Run` methods for simplified execution of the "main" file and simplified output
88
validation during integration tests.
99
issueLink: https://github.com/solo-io/go-utils/issues/135
1010
- type: NEW_FEATURE

changeloggenutils/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ As we often release bug fixes on backported branches, chronological ordering isn
1414
often requires a non-trivial amount of scrolling to get to the desired changelog.
1515

1616
In addition, users often have a tough time finding out changes between different versions of our products. A changelog
17-
"diff tool" would be exteremely useful here, but can not be done without additional processing on the
17+
"diff tool" would be extremely useful here, but can not be done without additional processing on the
1818
markdown release notes from github.
1919

2020
## Changelog Gen Utils

changeloggenutils/minor_release.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ type ReleaseData struct {
123123
}
124124

125125
// Contains Changelog enterpriseNotes for Individual openSourceReleases
126-
// ChangelogNotes is a map of individiual openSourceReleases to enterpriseNotes
126+
// ChangelogNotes is a map of individual openSourceReleases to enterpriseNotes
127127
// e.g. v1.2.5-beta3 -> ChangelogNotes, v1.4.0 -> ChangelogNotes
128128
type VersionData struct {
129129
ChangelogNotes map[Version]*ChangelogNotes

changelogutils/cmd/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ This release contained no user-facing changes.
4040

4141
**New Features**
4242

43-
- Add utilites to help move and inspect files in a repo. (https://github.com/solo-io/go-utils/issues/298)
43+
- Add utilities to help move and inspect files in a repo. (https://github.com/solo-io/go-utils/issues/298)
4444

4545
**Fixes**
4646

@@ -508,7 +508,7 @@ This release contained no user-facing changes.
508508

509509
**New Features**
510510

511-
- Introduce a utility for managing zap logs from a CLI tool. The new `clicore` library provides a means of sending human-friendly log messages to the console while capturing full json-formatted logs to a file. Library includes a pair of `Run` methods for siplified execution of the "main" file and simplified output validation during integration tests. (https://github.com/solo-io/go-utils/issues/135)
511+
- Introduce a utility for managing zap logs from a CLI tool. The new `clicore` library provides a means of sending human-friendly log messages to the console while capturing full json-formatted logs to a file. Library includes a pair of `Run` methods for simplified execution of the "main" file and simplified output validation during integration tests. (https://github.com/solo-io/go-utils/issues/135)
512512
- Simplified way to call cobra commands from test environments. (https://github.com/solo-io/go-utils/issues/124)
513513
- The `PrintTrimmedStack` fail handler simplifies error tracking in ginkgo tests by printing a condensed stack trace upon failure. Printout excludes well-known overhead files so you can more easily sight the failing line. This eliminates the need to count stack offset via `ExpectWithOffset`. You can just use `Expect`. (https://github.com/solo-io/go-utils/issues/131)
514514

@@ -663,7 +663,7 @@ This release contained no user-facing changes.
663663

664664
**New Features**
665665

666-
- Add a tiemout to the cluster lock. (https://github.com/solo-io/go-utils/issues/72)
666+
- Add a timeout to the cluster lock. (https://github.com/solo-io/go-utils/issues/72)
667667

668668

669669
### v0.5.0

changelogutils/reader.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ func (c *changelogReader) GetChangelogDirectory(ctx context.Context) string {
5656
var settings ValidationSettings
5757
bytes, err := c.code.GetFileContents(ctx, GetValidationSettingsPath())
5858
if err != nil {
59-
// unable to read validtion.yaml ~= "validation.yaml is not there"
59+
// unable to read validation.yaml ~= "validation.yaml is not there"
6060
return "changelog"
6161
}
6262

changelogutils/validator.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ type changelogValidator struct {
112112
reader ChangelogReader
113113
client githubutils.RepoClient
114114
code vfsutils.MountedRepo
115-
// list of arbitrary labels whos order is used to tie-break tag comparisons between
115+
// list of arbitrary labels whose order is used to tie-break tag comparisons between
116116
// versions with different labels. Labels ordered earlier are greater.
117117
labelOrder []string
118118
}

0 commit comments

Comments
 (0)