diff --git a/website_docs/getting-started.md b/website_docs/getting-started.md index 6e0d37a9c..83cf8c9c8 100644 --- a/website_docs/getting-started.md +++ b/website_docs/getting-started.md @@ -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(),