Skip to content

Commit

Permalink
go.mod: delete repeated "indirect"
Browse files Browse the repository at this point in the history
It got added by 'go mod tidy' in CL 471399
because the '; ' separator was missing.

For golang/go#48523.
For golang/go#58737.

Change-Id: I63642a4f49beb9679f9c5bbb4e2aa8ed0cc73c9e
Reviewed-on: https://go-review.googlesource.com/c/text/+/501835
TryBot-Result: Gopher Robot <gobot@golang.org>
Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org>
  • Loading branch information
dmitshur authored and gopherbot committed Jun 8, 2023
1 parent efb744f commit d61dd50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions go.mod
Expand Up @@ -3,8 +3,8 @@ module golang.org/x/text
require golang.org/x/tools v0.6.0 // tagx:ignore

require (
golang.org/x/mod v0.8.0 // indirect; indirect tagx:ignore
golang.org/x/sys v0.5.0 // indirect; indirect tagx:ignore
golang.org/x/mod v0.8.0 // indirect; tagx:ignore
golang.org/x/sys v0.5.0 // indirect; tagx:ignore
)

go 1.17

0 comments on commit d61dd50

Please sign in to comment.