From 7110623b6fc8dbb876855a30d7538c42a5e12064 Mon Sep 17 00:00:00 2001 From: Anton Zinovyev Date: Fri, 21 Jul 2023 19:48:20 +0200 Subject: [PATCH] fix parameter capitalisation in `ProjectBaseOptions` struct --- projects.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects.go b/projects.go index dc6f98b..581bb60 100644 --- a/projects.go +++ b/projects.go @@ -177,7 +177,7 @@ type ProjectBaseOptions struct { Limit int `url:"n,omitempty"` // Skip the given number of branches from the beginning of the list. - Skip string `url:"s,omitempty"` + Skip string `url:"S,omitempty"` } // ProjectOptions specifies the parameters to the ProjectsService.ListProjects.