diff --git a/go/libraries/doltcore/doltdb/gc_test.go b/go/libraries/doltcore/doltdb/gc_test.go index 1a99accd74..f99b30d0a7 100644 --- a/go/libraries/doltcore/doltdb/gc_test.go +++ b/go/libraries/doltcore/doltdb/gc_test.go @@ -154,10 +154,10 @@ func testGarbageCollection(t *testing.T, test gcTest) { // In September 2023, we found a failure to handle the `hasCache` in // `*NomsBlockStore` appropriately while cleaning up a memtable into which // dangling references had been written could result in writing chunks to a -// database which referenced non-existant chunks. +// database which referenced non-existent chunks. // // The general pattern was to get new chunk addresses into the hasCache, but -// not written to the store, and then to have an incoming chunk add a refenece +// not written to the store, and then to have an incoming chunk add a reference // to missing chunk. At that time, we would clear the memtable, since it had // invalid chunks in it, but we wouldn't purge the hasCache. Later writes which // attempted to reference the chunks which had made it into the hasCache would diff --git a/go/libraries/utils/set/strset_test.go b/go/libraries/utils/set/strset_test.go index f67f970607..e2564d718e 100644 --- a/go/libraries/utils/set/strset_test.go +++ b/go/libraries/utils/set/strset_test.go @@ -48,7 +48,7 @@ func TestStrSet(t *testing.T) { t.Error("Set doesn't match expectation after removes", strSet.AsSlice()) } - strSet.Remove("non-existant string") + strSet.Remove("non-existent string") if !isAsExpected(strSet, []string{"a", "c", "e"}) { t.Error("Set doesn't match expectation after noop remove", strSet.AsSlice()) diff --git a/go/store/types/apply_map_edits.go b/go/store/types/apply_map_edits.go index 09b125dbdd..f9e7d7b1b8 100644 --- a/go/store/types/apply_map_edits.go +++ b/go/store/types/apply_map_edits.go @@ -94,7 +94,7 @@ type AppliedEditStats struct { // Deletions counts the number of items deleted from the map Deletions int64 - // NonexistantDeletes counts the number of items where a deletion was attempted, but the key didn't exist in the map + // NonexistentDeletes counts the number of items where a deletion was attempted, but the key didn't exist in the map // so there was no impact NonExistentDeletes int64 } diff --git a/integration-tests/bats/1pk5col-ints.bats b/integration-tests/bats/1pk5col-ints.bats index 8356231332..3a4896d217 100755 --- a/integration-tests/bats/1pk5col-ints.bats +++ b/integration-tests/bats/1pk5col-ints.bats @@ -680,7 +680,7 @@ DELIM [[ "$output" =~ "PRIMARY KEY (\`pk\`)" ]] || false } -@test "1pk5col-ints: dolt schema show on non existant table" { +@test "1pk5col-ints: dolt schema show on non existent table" { run dolt schema show foo [ "$status" -eq 0 ] [ "$output" = "foo not found" ] diff --git a/integration-tests/bats/conflict-detection.bats b/integration-tests/bats/conflict-detection.bats index 84cb992fd7..d09ba594a6 100644 --- a/integration-tests/bats/conflict-detection.bats +++ b/integration-tests/bats/conflict-detection.bats @@ -9,7 +9,7 @@ teardown() { teardown_common } -@test "conflict-detection: merge non-existant branch errors" { +@test "conflict-detection: merge non-existent branch errors" { run dolt merge batmans-parents [ $status -eq 1 ] [[ "$output" =~ "branch not found" ]] || false diff --git a/integration-tests/bats/create-views.bats b/integration-tests/bats/create-views.bats index e104202301..98d360caf3 100644 --- a/integration-tests/bats/create-views.bats +++ b/integration-tests/bats/create-views.bats @@ -139,7 +139,7 @@ SQL [[ "${lines[3]}" =~ ' 4 ' ]] || false } -@test "create-views: cannot create view referencing non-existant table" { +@test "create-views: cannot create view referencing non-existent table" { run dolt sql <