Skip to content

Commit

Permalink
_scripts: fix typos (#3402)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandear committed May 31, 2023
1 parent 4798924 commit 9d6bce4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _scripts/gen-travis.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var minVersion = goVersion{Major: goversion.MinSupportedVersionOfGoMajor, Minor:
func (v goVersion) dec() goVersion {
v.Minor--
if v.Minor < 0 {
panic("TODO: fill the maximum minor version number for v.Maxjor here")
panic("TODO: fill the maximum minor version number for v.Major here")
}
return v
}
Expand Down
2 changes: 1 addition & 1 deletion _scripts/make.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ func checkCert() bool {
return false
}
if err != nil {
fmt.Printf("An error occoured when generating and installing a new certificate: %v\n", err)
fmt.Printf("An error occurred when generating and installing a new certificate: %v\n", err)
return false
}
os.Setenv("CERT", "dlv-cert")
Expand Down

0 comments on commit 9d6bce4

Please sign in to comment.