This is an automated email from the ASF dual-hosted git repository. nkollar pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/avro.git The following commit(s) were added to refs/heads/master by this push: new 49ee803 Fix typo, it's fixed (#595) 49ee803 is described below commit 49ee803d6d5fd702a5370728b6e3e010b3ee8a29 Author: Ryo Okubo AuthorDate: Fri Jul 26 22:05:32 2019 +0900 Fix typo, it's fixed (#595) --- lang/java/avro/src/main/java/org/apache/avro/Schema.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/java/avro/src/main/java/org/apache/avro/Schema.java b/lang/java/avro/src/main/java/org/apache/avro/Schema.java index c3052ad..abf2b75 100644 --- a/lang/java/avro/src/main/java/org/apache/avro/Schema.java +++ b/lang/java/avro/src/main/java/org/apache/avro/Schema.java @@ -238,7 +238,7 @@ public abstract class Schema extends JsonProperties implements Serializable { return createUnion(new LockableArrayList<>(types)); } - /** Create a union schema. */ + /** Create a fixed schema. */ public static Schema createFixed(String name, String doc, String space, int size) { return new FixedSchema(new Name(name, space), doc, size); }