Repository: flink
Updated Branches:
  refs/heads/master 4cadc3d60 -> 135db3aaa


[docs] fix typo of the RabbitMQ Java example (added braces)

Closes #1179


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/135db3aa
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/135db3aa
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/135db3aa

Branch: refs/heads/master
Commit: 135db3aaa538bc0d7372f4af606323df19905ee3
Parents: 4cadc3d
Author: Anton <[email protected]>
Authored: Thu Sep 24 15:37:15 2015 +0200
Committer: mbalassi <[email protected]>
Committed: Thu Sep 24 17:00:05 2015 +0200

----------------------------------------------------------------------
 docs/apis/streaming_guide.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/135db3aa/docs/apis/streaming_guide.md
----------------------------------------------------------------------
diff --git a/docs/apis/streaming_guide.md b/docs/apis/streaming_guide.md
index c3a3ef6..9c584ef 100644
--- a/docs/apis/streaming_guide.md
+++ b/docs/apis/streaming_guide.md
@@ -1972,7 +1972,7 @@ Example:
 <div data-lang="java" markdown="1">
 {% highlight java %}
 DataStream<String> stream = env
-       .addSource(new RMQSource<String>("localhost", "hello", new 
SimpleStringSchema))
+       .addSource(new RMQSource<String>("localhost", "hello", new 
SimpleStringSchema()))
        .print
 {% endhighlight %}
 </div>

Reply via email to