Skip to content

fix typos #14

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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 issue/acme.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func acmeMode() {
var dummy awin
dummy.prefix = "/issue/" + *project + "/"
if flag.NArg() > 0 {
// TODO(rsc): Without -a flag, the query is conatenated into one query.
// TODO(rsc): Without -a flag, the query is concatenated into one query.
// Decide which behavior should be used, and use it consistently.
// TODO(rsc): Block this look from doing the multiline selection mode?
for _, arg := range flag.Args() {
Expand Down
6 changes: 3 additions & 3 deletions schema/schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -3418,7 +3418,7 @@ type CheckRunFilter struct {
// GraphQL type: String
CheckName string `json:"checkName,omitempty"`

// Status: Filters the check runs by this status. Superceded by statuses.
// Status: Filters the check runs by this status. Superseded by statuses.
//
// GraphQL type: CheckStatusState
Status CheckStatusState `json:"status,omitempty"`
Expand Down Expand Up @@ -18132,7 +18132,7 @@ type MergeQueueConfiguration struct {
// MinimumEntriesToMerge: The minimum number of entries required to merge at once.
MinimumEntriesToMerge int `json:"minimumEntriesToMerge,omitempty"`

// MinimumEntriesToMergeWaitTime: The amount of time in minutes to wait before ignoring the minumum number of entries in the queue requirement and merging a collection of entries.
// MinimumEntriesToMergeWaitTime: The amount of time in minutes to wait before ignoring the minimum number of entries in the queue requirement and merging a collection of entries.
MinimumEntriesToMergeWaitTime int `json:"minimumEntriesToMergeWaitTime,omitempty"`
}

Expand Down Expand Up @@ -18277,7 +18277,7 @@ type MergeQueueMergingStrategy string
// MergeQueueMergingStrategy_ALLGREEN: Entries only allowed to merge if they are passing.
const MergeQueueMergingStrategy_ALLGREEN MergeQueueMergingStrategy = "ALLGREEN"

// MergeQueueMergingStrategy_HEADGREEN: Failing Entires are allowed to merge if they are with a passing entry.
// MergeQueueMergingStrategy_HEADGREEN: Failing entries are allowed to merge if they are with a passing entry.
const MergeQueueMergingStrategy_HEADGREEN MergeQueueMergingStrategy = "HEADGREEN"

// MergeQueueParameters (OBJECT): Merges must be performed via a merge queue.
Expand Down