Skip to content

Commit

Permalink
guides/http/go/server: fix typo in comment (census-instrumentation#703)
Browse files Browse the repository at this point in the history
"instrumented" was spelled wrong.
@reyang spotted the typo in my PR. I fixed it.
  • Loading branch information
ChrisCoe authored and odeke-em committed Jul 7, 2019
1 parent d694777 commit aa879f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/guides/http/go/net_http/server.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func main() {
Handler: originalHandler, // The handler you'd have used originally
}

// Now use the instrumnted handler
// Now use the instrumented handler
if err := http.ListenAndServe(":9999", och); err != nil {
log.Fatalf("Failed to run the server: %v", err)
}
Expand Down

0 comments on commit aa879f0

Please sign in to comment.