]> Cypherpunks repositories - gostls13.git/commitdiff
doc/faq: fix a grammar mistake
authorKerollos Magdy <kerolloz@yahoo.com>
Tue, 23 Jun 2020 10:45:36 +0000 (10:45 +0000)
committerIan Lance Taylor <iant@golang.org>
Thu, 25 Jun 2020 02:59:06 +0000 (02:59 +0000)
Change-Id: Ifa060f5f91d7b964eb180465245104411310d423
GitHub-Last-Rev: cd1862f2ca721a4f3d4ede7bcb3e7759ce96c6d5
GitHub-Pull-Request: golang/go#39780
Reviewed-on: https://go-review.googlesource.com/c/go/+/239388
Reviewed-by: Ian Lance Taylor <iant@golang.org>
doc/go_faq.html

index e40dde77e8bbcc5365ece980ea7b6a4359717843..23a3080c9bc7458e53b95eccc8920e0f81df1eb5 100644 (file)
@@ -515,7 +515,7 @@ when used well, can result in clean error-handling code.
 See the <a href="/doc/articles/defer_panic_recover.html">Defer, Panic, and Recover</a> article for details.
 Also, the <a href="https://blog.golang.org/errors-are-values">Errors are values</a> blog post
 describes one approach to handling errors cleanly in Go by demonstrating that,
-since errors are just values, the full power of Go can deployed in error handling.
+since errors are just values, the full power of Go can be deployed in error handling.
 </p>
 
 <h3 id="assertions">