From c34b18b0e5050e5f0af18c07056fbf552f51b68d Mon Sep 17 00:00:00 2001 From: Nathan Date: Wed, 1 May 2024 14:21:22 -0400 Subject: [PATCH] removed extra backtick from readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 386f581968b..d1cd2df1d0e 100644 --- a/README.md +++ b/README.md @@ -182,7 +182,7 @@ if _, ok := err.(*github.AbuseRateLimitError); ok { Alternatively, you can block until the rate limit is reset by using the `context.WithValue` method: -````go +```go repos, _, err := client.Repositories.List(context.WithValue(ctx, github.SleepUntilPrimaryRateLimitResetWhenRateLimited, true), "", nil) ```