Repository: beam-site Updated Branches: refs/heads/asf-site 32241b501 -> d42cbaf11
fix typos in hadoop io documentation Project: http://git-wip-us.apache.org/repos/asf/beam-site/repo Commit: http://git-wip-us.apache.org/repos/asf/beam-site/commit/212b9c7d Tree: http://git-wip-us.apache.org/repos/asf/beam-site/tree/212b9c7d Diff: http://git-wip-us.apache.org/repos/asf/beam-site/diff/212b9c7d Branch: refs/heads/asf-site Commit: 212b9c7d56748e5a7c025784394cf3c4e61481d9 Parents: 32241b5 Author: Ahmet Altay <[email protected]> Authored: Wed May 10 10:49:25 2017 -0700 Committer: Ahmet Altay <[email protected]> Committed: Wed May 10 22:29:46 2017 -0700 ---------------------------------------------------------------------- src/documentation/io/built-in-hadoop.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/beam-site/blob/212b9c7d/src/documentation/io/built-in-hadoop.md ---------------------------------------------------------------------- diff --git a/src/documentation/io/built-in-hadoop.md b/src/documentation/io/built-in-hadoop.md index dda5843..5c07717 100644 --- a/src/documentation/io/built-in-hadoop.md +++ b/src/documentation/io/built-in-hadoop.md @@ -70,7 +70,7 @@ p.apply("read", #### Read data with configuration and key translation -For example scenario: Beam `Coder` is not available for key class hence key translation is required. +For example, a Beam `Coder` is not available for `Key` class, so key translation is required. ```java p.apply("read", @@ -85,7 +85,7 @@ p.apply("read", #### Read data with configuration and value translation -For example scenario: Beam `Coder` is not available for value class hence value translation is required. +For example, a Beam `Coder` is not available for `Value` class, so value translation is required. ```java p.apply("read", @@ -100,7 +100,7 @@ p.apply("read", #### Read data with configuration, value translation and key translation -For example scenario: Beam Coders are not available for both `Key` class and `Value` class of `InputFormat` hence key and value translation is required. +For example, Beam Coders are not available for both `Key` class and `Value` classes of `InputFormat`, so key and value translation are required. ```java p.apply("read",
