chore: enhance codebase clarity through systematic terminology corrections (#24976)

This commit is contained in:
bigbear
2025-07-24 14:53:54 +00:00
committed by GitHub
parent 161236e53d
commit 39bec15523
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ func TestReadLineFromBuf(t *testing.T) {
require.ErrorIs(t, err, io.EOF)
})
t.Run("it returns the error if it's not EOF regardles if it read something or not", func(t *testing.T) {
t.Run("it returns the error if it's not EOF regardless if it read something or not", func(t *testing.T) {
expectedErr := errors.New("oh no")
fr.fnc = func(p []byte) (int, error) {
return copy(p, []byte("hello")), expectedErr