This is an automated email from the ASF dual-hosted git repository. twalthr pushed a commit to branch release-1.11 in repository https://gitbox.apache.org/repos/asf/flink.git
commit 70daa92699afd4a0e8c241ff4391795d57e48773 Author: Timo Walther <[email protected]> AuthorDate: Fri Jun 19 15:00:44 2020 +0200 [hotfix][core] Fix typo in SerializationSchema --- .../org/apache/flink/api/common/serialization/SerializationSchema.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flink-core/src/main/java/org/apache/flink/api/common/serialization/SerializationSchema.java b/flink-core/src/main/java/org/apache/flink/api/common/serialization/SerializationSchema.java index 3473cae..d385f28 100644 --- a/flink-core/src/main/java/org/apache/flink/api/common/serialization/SerializationSchema.java +++ b/flink-core/src/main/java/org/apache/flink/api/common/serialization/SerializationSchema.java @@ -64,7 +64,7 @@ public interface SerializationSchema<T> extends Serializable { interface InitializationContext { /** * Returns the metric group for the parallel subtask of the source that runs - * this {@link DeserializationSchema}. + * this {@link SerializationSchema}. * * <p>Instances of this class can be used to register new metrics with Flink and to create a nested * hierarchy based on the group names. See {@link MetricGroup} for more information for the metrics
