diff options
author | Benjamin Wuethrich <benjamin.wuethrich@gmail.com> | 2019-10-18 03:51:42 +0000 |
---|---|---|
committer | Brad Fitzpatrick <bradfitz@golang.org> | 2019-10-18 04:36:46 +0000 |
commit | 6f0fc3fed0969a146b9455fc73db91695c5b6d7e (patch) | |
tree | 09dfc219d61500d920f1d813c4038a0fa0b9fc05 /content | |
parent | 46537b0d26da97c8ea0977e87bbf419097b2a725 (diff) |
content: replace curly with straight double quote
Change-Id: I570bc25034c663d2fe184f340ebf64b2f5a630f3
GitHub-Last-Rev: ae83fcccadba5e4acbe959268ba6ceb41ef70e07
GitHub-Pull-Request: golang/blog#26
Reviewed-on: https://go-review.googlesource.com/c/blog/+/201897
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'content')
-rw-r--r-- | content/go1.13-errors.article | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/go1.13-errors.article b/content/go1.13-errors.article index 32e18eb..fd3fc4c 100644 --- a/content/go1.13-errors.article +++ b/content/go1.13-errors.article @@ -184,7 +184,7 @@ is identical to `%v`. Wrapping an error with `%w` makes it available to `errors.Is` and `errors.As`: - err := fmt.Errorf("access denied: %w”, ErrPermission) + err := fmt.Errorf("access denied: %w", ErrPermission) ... if errors.Is(err, ErrPermission) ... |