This is an automated email from the ASF dual-hosted git repository.
azagrebin pushed a commit to branch release-1.12
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/release-1.12 by this push:
new 3ecd68e [hotfix][connectors] Fixed typo in Source.java docs
3ecd68e is described below
commit 3ecd68edc7e06d853057c25ddc79ee23c26d5d12
Author: I. Raleigh <[email protected]>
AuthorDate: Tue Nov 10 15:27:14 2020 -0800
[hotfix][connectors] Fixed typo in Source.java docs
This closes #14026.
---
.../src/main/java/org/apache/flink/api/connector/source/Source.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/flink-core/src/main/java/org/apache/flink/api/connector/source/Source.java
b/flink-core/src/main/java/org/apache/flink/api/connector/source/Source.java
index 38a2578..e4eea48 100644
--- a/flink-core/src/main/java/org/apache/flink/api/connector/source/Source.java
+++ b/flink-core/src/main/java/org/apache/flink/api/connector/source/Source.java
@@ -43,7 +43,7 @@ public interface Source<T, SplitT extends SourceSplit,
EnumChkT> extends Seriali
Boundedness getBoundedness();
/**
- * Creates a new reader to read data from the spits it gets assigned.
+ * Creates a new reader to read data from the splits it gets assigned.
* The reader starts fresh and does not have any state to resume.
*
* @param readerContext The {@link SourceReaderContext context} for the
source reader.