From 83ef031922808416b687c02db222d545c9dd0042 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Mon, 15 Jul 2024 07:09:34 -1000 Subject: [PATCH] [DATALAD RUNCMD] Do interactive fixing of some ambigous typos === Do not change lines below === { "chain": [], "cmd": "codespell -w -i 3 -C 2", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^ Signed-off-by: Yaroslav Halchenko --- pkg/gui/controllers/helpers/confirmation_helper_test.go | 2 +- pkg/integration/tests/demo/custom_patch.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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") } `