1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2025-10-31 00:07:40 +02:00

Fix typo in go libraries (#2652)

This commit is contained in:
Nathan Landis
2022-03-04 12:49:36 -06:00
committed by GitHub
parent d6f9d0d387
commit 16e52ed9cc

View File

@@ -60,7 +60,7 @@ func sleepy(ctx context.Context) {
// httpHandler is an HTTP handler function that is going to be instrumented.
func httpHandler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hello, World! I am instrumented autoamtically!")
fmt.Fprintf(w, "Hello, World! I am instrumented automatically!")
ctx := r.Context()
sleepy(ctx)
}