From: Rob Pike
Date: Sun, 26 Oct 2014 18:27:55 +0000 (-0700)
Subject: doc/go_faq.html: fix a couple of nits
X-Git-Tag: go1.4beta1~45
X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a9422651f9600c38b3f31f08f1be5a96cb338306;p=gostls13.git
doc/go_faq.html: fix a couple of nits
Wrong article, one stylistic point that bothers someone (but not me).
LGTM=bradfitz
R=golang-codereviews, bradfitz
CC=golang-codereviews
https://golang.org/cl/156680043
---
diff --git a/doc/go_faq.html b/doc/go_faq.html
index ec3689aeb0..9aac058388 100644
--- a/doc/go_faq.html
+++ b/doc/go_faq.html
@@ -1115,7 +1115,7 @@ error but the situation can still be confusing, because sometimes a
pointer
is necessary to satisfy an interface.
The insight is that although a pointer to a concrete type can satisfy
-an interface, with one exception a pointer to an interface can never satisfy a interface.
+an interface, with one exception a pointer to an interface can never satisfy an interface.
@@ -1356,7 +1356,7 @@ to speed it up.
-Go's goroutine scheduler is not as good as it needs to be. In future, it
+Go's goroutine scheduler is not as good as it needs to be. In the future, it
should recognize such cases and optimize its use of OS threads. For now,
GOMAXPROCS
should be set on a per-application basis.