Skip to content

Commit 4a950b2

Browse files
supermarinBryan C. Mills
authored andcommitted
content: remove irrelevant bug documentation
The aforementioned bug has been resolved in https://golang.org/cl/183991. Removing it from the blog content reduces cognitive overhead for readers. Change-Id: I19b944599d97895217e3178b31edf6a25c4c1fdc GitHub-Last-Rev: b7ec545 GitHub-Pull-Request: #48 Reviewed-on: https://go-review.googlesource.com/c/blog/+/277612 Reviewed-by: Bryan C. Mills <[email protected]>
1 parent a83e7e2 commit 4a950b2

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

content/using-go-modules.article

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ been removed, renamed, or otherwise changed in incompatible ways.
422422
Reading the docs, we can see that `Hello` has become `HelloV3`:
423423

424424
$ go doc rsc.io/quote/v3
425-
package quote // import "rsc.io/quote"
425+
package quote // import "rsc.io/quote/v3"
426426

427427
Package quote collects pithy sayings.
428428

@@ -433,10 +433,6 @@ Reading the docs, we can see that `Hello` has become `HelloV3`:
433433
func OptV3() string
434434
$
435435

436-
(There is also a
437-
[known bug](https://golang.org/issue/30778) in the output;
438-
the displayed import path has incorrectly dropped the `/v3`.)
439-
440436
We can update our use of `quote.Hello()` in `hello.go` to use `quoteV3.HelloV3()`:
441437

442438
package hello

0 commit comments

Comments
 (0)