Skip to content

Commit

Permalink
Typo fix (#3712)
Browse files Browse the repository at this point in the history
Signed-off-by: Avory <avorycorelli@gmail.com>
  • Loading branch information
avorylli authored Feb 10, 2025
1 parent db66511 commit 3a7bd07
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/fixture/tmpnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ metrics and logs.

Collection of logs and metrics is enabled for CI jobs that use
tmpnet. Each job will execute a step titled `Notify of metrics
availability` that emits a link to grafana parametized to show results
for the job. Additional links to grafana parametized to show results
availability` that emits a link to grafana parameterized to show results
for the job. Additional links to grafana parameterized to show results
for individual network will appear in the logs displaying the start of
those networks.
4 changes: 2 additions & 2 deletions version/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ func Parse(s string) (*Semantic, error) {

func parseVersions(s string) (int, int, int, error) {
splitVersion := strings.SplitN(s, ".", 3)
if numSeperators := len(splitVersion); numSeperators != 3 {
return 0, 0, 0, fmt.Errorf("%w: expected 3 only got %d", errMissingVersions, numSeperators)
if numSeparators := len(splitVersion); numSeparators != 3 {
return 0, 0, 0, fmt.Errorf("%w: expected 3 only got %d", errMissingVersions, numSeparators)
}

major, err := strconv.Atoi(splitVersion[0])
Expand Down

0 comments on commit 3a7bd07

Please sign in to comment.