You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ch...@apache.org on 2019/05/09 07:03:19 UTC

[flink] branch master updated: [hotfix][docs] Fix typo

This is an automated email from the ASF dual-hosted git repository.

chesnay pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new 12b8f56  [hotfix][docs] Fix typo
12b8f56 is described below

commit 12b8f56545fc0a3c69def2fc262d56c5fc80ca2a
Author: Robert Stoll <rs...@tutteli.ch>
AuthorDate: Thu May 9 09:03:10 2019 +0200

    [hotfix][docs] Fix typo
---
 docs/dev/api_concepts.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/dev/api_concepts.md b/docs/dev/api_concepts.md
index bd7ca5a..619ee70 100644
--- a/docs/dev/api_concepts.md
+++ b/docs/dev/api_concepts.md
@@ -783,7 +783,7 @@ defined in the `write()`and `readFields()` methods will be used for serializatio
 
 You can use special types, including Scala's `Either`, `Option`, and `Try`.
 The Java API has its own custom implementation of `Either`.
-Similarly to Scala's `Either`, it represents a value of one two possible types, *Left* or *Right*.
+Similarly to Scala's `Either`, it represents a value of two possible types, *Left* or *Right*.
 `Either` can be useful for error handling or operators that need to output two different types of records.
 
 #### Type Erasure & Type Inference