Skip to content

Commit

Permalink
README: fix go get instructions
Browse files Browse the repository at this point in the history
Currently the instructions tell the user to:

go get -u golang.org/x/image

However, this is not valid because golang.org/x/image contains no Go
files.

Instead it should read:

go get -u golang.org/x/image/...

Fixes golang/go#25618.

Change-Id: I465fac26afdca52878518e4c01d46cf9d12930b9
Reviewed-on: https://go-review.googlesource.com/115675
Reviewed-by: Brad Fitzpatrick <[email protected]>
  • Loading branch information
MiderWong5ddop committed Sep 28, 2023
1 parent 17fe120 commit 445035f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This repository holds supplementary Go image libraries.

## Download/Install

The easiest way to install is to run `go get -u golang.org/x/image`. You can
The easiest way to install is to run `go get -u golang.org/x/image/...`. You can
also manually git clone the repository to `$GOPATH/src/golang.org/x/image`.

## Report Issues / Send Patches
Expand Down

0 comments on commit 445035f

Please sign in to comment.