From f407196409c85b040569c52ad7b638fdfc7c9d72 Mon Sep 17 00:00:00 2001 From: Fatih Aktas Date: Tue, 18 Jul 2023 12:58:20 -0400 Subject: [PATCH] Rename to newAccountsService --- v5/pivotal/account.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v5/pivotal/account.go b/v5/pivotal/account.go index f15b674..0cf5e8e 100644 --- a/v5/pivotal/account.go +++ b/v5/pivotal/account.go @@ -20,7 +20,7 @@ type AccountsService struct { client *Client } -func newAccountService(client *Client) *AccountsService { +func newAccountsService(client *Client) *AccountsService { return &AccountsService{client} }