Skip to content

Commit 587d4be

Browse files
committed
Revert to Go 1.13, remove "in the"
1 parent 5a60878 commit 587d4be

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
go-github is a Go client library for accessing the [GitHub API v3][].
1111

12-
Currently, **go-github requires Go version 1.21 or greater**. go-github tracks
12+
Currently, **go-github requires Go version 1.13 or greater**. go-github tracks
1313
[Go's version support policy][support-policy]. We do our best not to break
1414
older versions of Go if we don't have to, but due to tooling constraints, we
1515
don't always test older versions.
@@ -205,7 +205,8 @@ if _, ok := err.(*github.RateLimitError); ok {
205205
}
206206
```
207207

208-
Learn more about GitHub rate limiting in the ["REST API endpoints for rate limits"](https://docs.github.com/en/rest/rate-limit).
208+
Learn more about GitHub rate limiting in
209+
["REST API endpoints for rate limits"](https://docs.github.com/en/rest/rate-limit).
209210

210211
In addition to these rate limits, GitHub imposes a secondary rate limit on all API clients.
211212
This rate limit prevents clients from making too many concurrent requests.
@@ -228,7 +229,7 @@ repos, _, err := client.Repositories.List(context.WithValue(ctx, github.SleepUnt
228229
You can use [gofri/go-github-ratelimit](https://github.com/gofri/go-github-ratelimit) to handle
229230
secondary rate limit sleep-and-retry for you.
230231

231-
Learn more about GitHub secondary rate limiting in the
232+
Learn more about GitHub secondary rate limiting in
232233
["About secondary rate limits"](https://docs.github.com/en/rest/using-the-rest-api/rate-limits-for-the-rest-api?apiVersion=2022-11-28#about-secondary-rate-limits).
233234

234235
### Accepted Status ###
@@ -264,7 +265,7 @@ import "github.com/gregjones/httpcache"
264265
).WithAuthToken(os.Getenv("GITHUB_TOKEN"))
265266
```
266267

267-
Learn more about GitHub conditional requests in the
268+
Learn more about GitHub conditional requests in
268269
["Use conditional requests if appropriate"](https://docs.github.com/en/rest/using-the-rest-api/best-practices-for-using-the-rest-api?apiVersion=2022-11-28#use-conditional-requests-if-appropriate).
269270

270271
### Creating and Updating Resources ###

0 commit comments

Comments
 (0)