Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion github/issues.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ type PullRequestLinks struct {
}

// IssueType represents the type of issue.
// For now it shows up when receiveing an Issue event.
// For now it shows up when receiving an Issue event.
type IssueType struct {
ID *int64 `json:"id,omitempty"`
NodeID *string `json:"node_id,omitempty"`
Expand Down
4 changes: 2 additions & 2 deletions github/repos_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,7 @@ func TestRepositoriesService_GetAutomatedSecurityFixes(t *testing.T) {
ctx := context.Background()
fixes, _, err := client.Repositories.GetAutomatedSecurityFixes(ctx, "o", "r")
if err != nil {
t.Errorf("Repositories.GetAutomatedSecurityFixes returned errpr: #{err}")
t.Errorf("Repositories.GetAutomatedSecurityFixes returned error: #{err}")
}

want := &AutomatedSecurityFixes{
Expand Down Expand Up @@ -3342,7 +3342,7 @@ func TestRepositoriesService_OptionalSignaturesOnProtectedBranch(t *testing.T) {
}
}

func TestPullRequestReviewsEnforcementRequest_MarshalJSON_nilDismissalRestirctions(t *testing.T) {
func TestPullRequestReviewsEnforcementRequest_MarshalJSON_nilDismissalRestrictions(t *testing.T) {
t.Parallel()
req := PullRequestReviewsEnforcementRequest{}

Expand Down
2 changes: 1 addition & 1 deletion scrape/forms_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func Test_ParseForms(t *testing.T) {
}
}

func Test_FetchAndSumbitForm(t *testing.T) {
func Test_FetchAndSubmitForm(t *testing.T) {
t.Parallel()
client, mux := setup(t)
var submitted bool
Expand Down
Loading