aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorKerollos Magdy <kerolloz@yahoo.com>2020-06-23 10:45:36 +0000
committerIan Lance Taylor <iant@golang.org>2020-06-25 02:59:06 +0000
commitd7e3a161f50a45c0c86e2621f99074c38572df82 (patch)
tree91afaa4a9e17801e001fc5738003ce917c137129 /doc
parentb4652028d48f42506cfd10c1763c6d7e8b22cb7b (diff)
downloadgo-d7e3a161f50a45c0c86e2621f99074c38572df82.tar.gz
go-d7e3a161f50a45c0c86e2621f99074c38572df82.zip
doc/faq: fix a grammar mistake
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>
Diffstat (limited to 'doc')
-rw-r--r--doc/go_faq.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/go_faq.html b/doc/go_faq.html
index e40dde77e8..23a3080c9b 100644
--- a/doc/go_faq.html
+++ b/doc/go_faq.html
@@ -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">