From 46d4e869885dce30b1fdacf316aa85200ce15876 Mon Sep 17 00:00:00 2001 From: Konrad Malawski Date: Wed, 8 Apr 2015 13:15:59 +0200 Subject: [PATCH] =doc #16670 version in docs should be auto-replaced --- akka-docs-dev/rst/java/stream-quickstart.rst | 4 ++-- akka-docs-dev/rst/scala/stream-quickstart.rst | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/akka-docs-dev/rst/java/stream-quickstart.rst b/akka-docs-dev/rst/java/stream-quickstart.rst index bba6c2846e..324810499d 100644 --- a/akka-docs-dev/rst/java/stream-quickstart.rst +++ b/akka-docs-dev/rst/java/stream-quickstart.rst @@ -50,9 +50,9 @@ familiar to anyone who has used the Scala Collections library, however they oper .. includecode:: ../../../akka-samples/akka-docs-java-lambda/src/test/java/docs/stream/TwitterStreamQuickstartDocTest.java#authors-filter-map Finally in order to :ref:`materialize ` and run the stream computation we need to attach -the Flow to a :class:`Sink` that will get the flow running. The simplest way to do this is to call +the Flow to a ``Sink`` that will get the flow running. The simplest way to do this is to call ``runWith(sink)`` on a ``Source``. For convenience a number of common Sinks are predefined and collected as static methods on -the `Sink class `_. +the `Sink class `_. For now let's simply print each author: .. includecode:: ../../../akka-samples/akka-docs-java-lambda/src/test/java/docs/stream/TwitterStreamQuickstartDocTest.java#authors-foreachsink-println diff --git a/akka-docs-dev/rst/scala/stream-quickstart.rst b/akka-docs-dev/rst/scala/stream-quickstart.rst index fd606b3ffc..2ab04e163e 100644 --- a/akka-docs-dev/rst/scala/stream-quickstart.rst +++ b/akka-docs-dev/rst/scala/stream-quickstart.rst @@ -47,7 +47,7 @@ familiar to anyone who has used the Scala Collections library, however they oper Finally in order to :ref:`materialize ` and run the stream computation we need to attach the Flow to a :class:`Sink` that will get the flow running. The simplest way to do this is to call ``runWith(sink)`` on a ``Source``. For convenience a number of common Sinks are predefined and collected as methods on -the :class:``Sink`` `companion object `_. +the :class:`Sink` `companion object `_. For now let's simply print each author: .. includecode:: code/docs/stream/TwitterStreamQuickstartDocSpec.scala#authors-foreachsink-println