diff options
author | Steve Moyer <smoyer1@selesy.com> | 2023-02-16 09:45:53 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-16 09:45:53 -0500 |
commit | 55e4046b4bb77139e25ee6ad7adcfc829d4e6ba5 (patch) | |
tree | 2c09f86115b08ca3484f7b1b69f4836daf18f693 /bridge/github | |
parent | 1ae31b342b57ace44131f5ecd03c506814a25e62 (diff) | |
parent | 92f632114b4b6b3892d7872b21844283631c73c4 (diff) | |
download | git-bug-55e4046b4bb77139e25ee6ad7adcfc829d4e6ba5.tar.gz |
Merge pull request #1008 from yarikoptic/enh-codespell
Fix typos, provide configuration and github workflow for codespell
Diffstat (limited to 'bridge/github')
-rw-r--r-- | bridge/github/client.go | 2 | ||||
-rw-r--r-- | bridge/github/import_test.go | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/bridge/github/client.go b/bridge/github/client.go index 361d0ee5..974c3067 100644 --- a/bridge/github/client.go +++ b/bridge/github/client.go @@ -20,7 +20,7 @@ type Client interface { Query(context.Context, interface{}, map[string]interface{}) error } -// rateLimitHandlerClient wrapps the Github client and adds improved error handling and handling of +// rateLimitHandlerClient wraps the Github client and adds improved error handling and handling of // Github's GraphQL rate limit. type rateLimitHandlerClient struct { sc Client diff --git a/bridge/github/import_test.go b/bridge/github/import_test.go index 5fafcce1..52a3f852 100644 --- a/bridge/github/import_test.go +++ b/bridge/github/import_test.go @@ -123,11 +123,11 @@ func TestGithubImporter(t *testing.T) { }, }, { - name: "transfered issue", + name: "transferred issue", url: "https://github.com/MichaelMure/git-bug-test-github-bridge/issues/8", bug: &bug.Snapshot{ Operations: []dag.Operation{ - bug.NewCreateOp(author, 0, "transfered issue", "", nil), + bug.NewCreateOp(author, 0, "transferred issue", "", nil), }, }, }, |