From 58cadd08715cb07eb2fa3e19b1a31bb0c0fbd96d Mon Sep 17 00:00:00 2001 From: Reda Laanait Date: Wed, 1 Nov 2023 20:44:55 +0100 Subject: [PATCH] fix: typo in schema compatibility error message (#320) --- schema_compatibility.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schema_compatibility.go b/schema_compatibility.go index d8201263..d1779ea9 100644 --- a/schema_compatibility.go +++ b/schema_compatibility.go @@ -177,7 +177,7 @@ func (c *SchemaCompatibility) match(reader, writer Schema) error { func (c *SchemaCompatibility) checkSchemaName(reader, writer NamedSchema) error { if reader.FullName() != writer.FullName() { - return fmt.Errorf("reader schema %s and writer schema %s names do match", reader.FullName(), writer.FullName()) + return fmt.Errorf("reader schema %s and writer schema %s names do not match", reader.FullName(), writer.FullName()) } return nil