From 9f5a1982b58364eed27e079b7e69021a5042ddb4 Mon Sep 17 00:00:00 2001 From: Cyborus Date: Sun, 19 Nov 2023 14:34:26 -0500 Subject: [PATCH] `has_pull_request` -> `has_pull_requests` --- src/repository.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/repository.rs b/src/repository.rs index b12ae8a..8dfe0fe 100644 --- a/src/repository.rs +++ b/src/repository.rs @@ -245,7 +245,7 @@ pub struct Repository { pub has_issues: bool, pub has_packages: bool, pub has_projects: bool, - pub has_pull_request: bool, + pub has_pull_requests: bool, pub has_releases: bool, pub has_wiki: bool, pub html_url: Url,