aboutsummaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorYann Salaün <1910607+yansal@users.noreply.github.com>2019-10-17 22:24:53 +0000
committerBrad Fitzpatrick <bradfitz@golang.org>2019-10-17 23:31:39 +0000
commit46537b0d26da97c8ea0977e87bbf419097b2a725 (patch)
tree0c6e2125b807b6a1230d62bf201a9b5bd3e4b460 /content
parent0cd0cdff05c251ad0c796cc94d7059e013311fc6 (diff)
content: fix typo in blog post on Go 1.13 errors
Change-Id: I61fd0cb7dc3e6f17089501d729f680a044ddf13f GitHub-Last-Rev: 4211f342552079574f1616c5ce2fcc5ca2d921a5 GitHub-Pull-Request: golang/blog#25 Reviewed-on: https://go-review.googlesource.com/c/blog/+/201837 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'content')
-rw-r--r--content/go1.13-errors.article2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/go1.13-errors.article b/content/go1.13-errors.article
index 904b0eb..32e18eb 100644
--- a/content/go1.13-errors.article
+++ b/content/go1.13-errors.article
@@ -314,7 +314,7 @@ do not return the underlying error directly.
// DoSomething returns an error wrapping ErrPermission if the user
// does not have permission to do something.
- func DoSomething() {
+ func DoSomething() error {
if !userHasPermission() {
// If we return ErrPermission directly, callers might come
// to depend on the exact error value, writing code like this: