1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2025-01-24 03:47:19 +02:00

Minor grammatical fix (#2347)

* Minor grammatical fix

* Another minor correction

Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
This commit is contained in:
Joseph Woodward 2021-11-10 22:26:18 +00:00 committed by GitHub
parent 43c55c3e5c
commit d0e5dd528f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,7 +39,7 @@ import (
"log"
)
// App is an Fibonacci computation application.
// App is a Fibonacci computation application.
type App struct {
r io.Reader
l *log.Logger
@ -296,7 +296,7 @@ To initialize the console exporter, add the following function to the `main.go`
func newExporter(w io.Writer) (trace.SpanExporter, error) {
return stdouttrace.New(
stdouttrace.WithWriter(w),
// Use human readable output.
// Use human-readable output.
stdouttrace.WithPrettyPrint(),
// Do not print timestamps for the demo.
stdouttrace.WithoutTimestamps(),