diff --git a/pkg/gui/controllers/helpers/confirmation_helper_test.go b/pkg/gui/controllers/helpers/confirmation_helper_test.go index 76f4329fd..de3db9358 100644 --- a/pkg/gui/controllers/helpers/confirmation_helper_test.go +++ b/pkg/gui/controllers/helpers/confirmation_helper_test.go @@ -30,7 +30,7 @@ func Test_underlineLinks(t *testing.T) { expectedResult: "\x1b]8;;https://example.com\x1b\\https://example.com\x1b]8;;\x1b\\", }, { - name: "link preceeded and followed by text", + name: "link preceded and followed by text", text: "bla https://example.com xyz", expectedResult: "bla \x1b]8;;https://example.com\x1b\\https://example.com\x1b]8;;\x1b\\ xyz", }, diff --git a/pkg/integration/tests/demo/custom_patch.go b/pkg/integration/tests/demo/custom_patch.go index 3a1440eda..560073d3a 100644 --- a/pkg/integration/tests/demo/custom_patch.go +++ b/pkg/integration/tests/demo/custom_patch.go @@ -10,7 +10,7 @@ var usersFileContent = `package main import "fmt" func main() { - // TODO: verify that this actuall works + // TODO: verify that this actually works fmt.Println("hello world") } `