You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by al...@apache.org on 2019/11/09 00:35:06 UTC

[beam] branch master updated: fix section 5.3.1 Java code example

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 1e8c7a0  fix section 5.3.1 Java code example
     new 18de5fa  Merge pull request #9781 from shusso/prog-guide-531-fix-example-code
1e8c7a0 is described below

commit 1e8c7a08f7a938d434e24030cd14fc470a74f101
Author: Samuel Husso <sh...@iki.fi>
AuthorDate: Sun Oct 13 09:57:04 2019 +0300

    fix section 5.3.1 Java code example
---
 website/src/documentation/programming-guide.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/website/src/documentation/programming-guide.md b/website/src/documentation/programming-guide.md
index 0c8a2c1..ad85f13 100644
--- a/website/src/documentation/programming-guide.md
+++ b/website/src/documentation/programming-guide.md
@@ -1921,8 +1921,8 @@ operator (\*) to read all matching input files that have prefix "input-" and the
 suffix ".csv" in the given location:
 
 ```java
-p.apply(“ReadFromText”,
-    TextIO.read().from("protocol://my_bucket/path/to/input-*.csv");
+p.apply("ReadFromText",
+    TextIO.read().from("protocol://my_bucket/path/to/input-*.csv"));
 ```
 
 ```py