Skip to content

Commit 1ecdb37

Browse files
committed
fix after review
1 parent 5f7c8e1 commit 1ecdb37

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

github/event_types.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -943,7 +943,7 @@ type ProjectColumnEvent struct {
943943
}
944944

945945
// ProjectV2Event is triggered when there is activity relating to an organization-level project.
946-
// The Webhook event name is "projects_v2"
946+
// The Webhook event name is "projects_v2".
947947
//
948948
// GitHub API docs: https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#projects_v2
949949
type ProjectV2Event struct {
@@ -974,8 +974,8 @@ type ProjectsV2 struct {
974974
DeletedBy *User `json:"deleted_by,omitempty"`
975975
}
976976

977-
// ProjectV2ItemEvent triggered when there is activity relating to an item on an organization-level project.
978-
// The Webhook event name is "projects_v2_item"
977+
// ProjectV2ItemEvent is triggered when there is activity relating to an item on an organization-level project.
978+
// The Webhook event name is "projects_v2_item".
979979
//
980980
// GitHub API docs: https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#projects_v2_item
981981
type ProjectV2ItemEvent struct {

github/event_types_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14300,7 +14300,6 @@ func TestProjectV2Event_Marshal(t *testing.T) {
1430014300
}`
1430114301

1430214302
testJSONMarshal(t, u, want)
14303-
1430414303
}
1430514304

1430614305
func TestProjectV2ItemEvent_Marshal(t *testing.T) {

0 commit comments

Comments
 (0)