Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo #1572

Merged
merged 2 commits into from
Jan 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions transport/http.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ type HTTPTransportOptions struct {
// for authenticating the agent.
//
// If unspecified, SecretToken will be initialized using the
// ELASTIC_APM_SECRET_TOKEN envirohnment variable.
// ELASTIC_APM_SECRET_TOKEN environment variable.
SecretToken string

// ServerURLs holds the URLs for your Elastic APM Server. The Server
Expand Down Expand Up @@ -787,7 +787,7 @@ func parseCacheControl(s string) cacheControl {
}

// parseMajorVersion returns the major version given a version string. Accepts
// the string as long as it contans a `.` and the runes preceding `.` can be
// the string as long as it contains a `.` and the runes preceding `.` can be
// parsed to a number. If the operation succeeded, the second return value will
// be true.
func parseMajorVersion(v string) (uint32, bool) {
Expand Down
Loading