Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/hamba/avro into record_defa…
Browse files Browse the repository at this point in the history
…ult_encoding
  • Loading branch information
redaLaanait committed Nov 4, 2023
2 parents bf71066 + 58cadd0 commit a31e454
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 a31e454

Please sign in to comment.