Skip to content

Commit

Permalink
fix: typo in schema compatibility error message (#320)
Browse files Browse the repository at this point in the history
  • Loading branch information
redaLaanait authored Nov 1, 2023
1 parent 0429db3 commit 58cadd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion schema_compatibility.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 58cadd0

Please sign in to comment.