From c5daa955265490550e28093bd544cad4df6dee30 Mon Sep 17 00:00:00 2001 From: Joseph Woodward Date: Fri, 5 Nov 2021 05:20:22 +0000 Subject: [PATCH 1/2] Minor grammatical fix --- website_docs/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website_docs/getting-started.md b/website_docs/getting-started.md index f7b35a6a370..f53db3869a6 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 From 7aba2a6cd49d5c3dd8a44a46547394e74a7f0883 Mon Sep 17 00:00:00 2001 From: Joseph Woodward Date: Fri, 5 Nov 2021 05:47:17 +0000 Subject: [PATCH 2/2] Another minor correction --- website_docs/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website_docs/getting-started.md b/website_docs/getting-started.md index f53db3869a6..10efcfb7a68 100644 --- a/website_docs/getting-started.md +++ b/website_docs/getting-started.md @@ -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(),