From bc5d4bf925b5019890308c699794a15dfe1d34d1 Mon Sep 17 00:00:00 2001 From: ayla Date: Sat, 15 Nov 2025 16:11:05 -0300 Subject: [PATCH] types: fix struct tag typo Signed-off-by: ayla --- types/repo.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/repo.go b/types/repo.go index 18bfef2e..3639f067 100644 --- a/types/repo.go +++ b/types/repo.go @@ -66,7 +66,7 @@ type Reference struct { type Branch struct { Reference `json:"reference"` Commit *object.Commit `json:"commit,omitempty"` - IsDefault bool `json:"is_deafult,omitempty"` + IsDefault bool `json:"is_default,omitempty"` } type RepoTagsResponse struct { -- 2.43.0