summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2014-10-26 11:27:55 -0700
committerRob Pike <r@golang.org>2014-10-26 11:27:55 -0700
commit44440acd56598e365576b7d6b46767d2055bb9b2 (patch)
tree65c446455d9e178a21001b241b082da6afa36fc6 /doc
parentff43b74bdaad68affb97e23f39f49734bb063594 (diff)
downloadgo-44440acd56598e365576b7d6b46767d2055bb9b2.tar.gz
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://codereview.appspot.com/156680043
Diffstat (limited to 'doc')
-rw-r--r--doc/go_faq.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/go_faq.html b/doc/go_faq.html
index ec3689aeb..9aac05838 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
<a href="#different_method_sets">pointer
is necessary to satisfy an interface</a>.
The insight is that although a pointer to a concrete type can satisfy
-an interface, with one exception <em>a pointer to an interface can never satisfy a interface</em>.
+an interface, with one exception <em>a pointer to an interface can never satisfy an interface</em>.
</p>
<p>
@@ -1356,7 +1356,7 @@ to speed it up.
</p>
<p>
-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,
<code>GOMAXPROCS</code> should be set on a per-application basis.
</p>