Skip to content

Commit caffe1d

Browse files
authored
Fix import comment bug (#379)
* Fix import comment bug The import of the go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp is failing when imported outside of a module because this comment did not have a syntactically valid import statement. * Add changes to changelog
1 parent 5ef58e7 commit caffe1d

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
88

99
## [Unreleased]
1010

11+
### Fixed
12+
13+
- The import comment in `go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp` is now correctly quoted. (#379)
14+
1115
## [0.12.0] - 2020-09-25
1216

1317
### Added

instrumentation/net/http/otelhttp/doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
// Package otelhttp provides an http.Handler and functions that are intended
1616
// to be used to add tracing by wrapping existing handlers (with Handler) and
1717
// routes WithRouteTag.
18-
package otelhttp // import go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp
18+
package otelhttp // import "go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp"

0 commit comments

Comments
 (0)