diff --git a/akka-docs/rst/intro/getting-started.rst b/akka-docs/rst/intro/getting-started.rst index 9fcee093ce..08191b0006 100644 --- a/akka-docs/rst/intro/getting-started.rst +++ b/akka-docs/rst/intro/getting-started.rst @@ -37,7 +37,7 @@ Akka is very modular and consists of several JARs containing different features. - ``akka-cluster`` – Cluster membership management, elastic routers. -- ``akka-osgi`` – utilities for using Akka in OSGi containers +- ``akka-osgi`` – Utilities for using Akka in OSGi containers - ``akka-osgi-aries`` – Aries blueprint for provisioning actor systems @@ -45,6 +45,8 @@ Akka is very modular and consists of several JARs containing different features. - ``akka-slf4j`` – SLF4J Logger (event bus listener) +- ``akka-stream`` – Reactive stream processing + - ``akka-testkit`` – Toolkit for testing Actor systems In addition to these stable modules there are several which are on their way diff --git a/akka-docs/rst/intro/what-is-akka.rst b/akka-docs/rst/intro/what-is-akka.rst index 808b4f1278..2361b06dcf 100644 --- a/akka-docs/rst/intro/what-is-akka.rst +++ b/akka-docs/rst/intro/what-is-akka.rst @@ -60,7 +60,7 @@ and :ref:`Scala ` documentation chapters. Persistence ----------- -State changes experience by an actor can optionally be persisted and replayed when the actor is started or +State changes experienced by an actor can optionally be persisted and replayed when the actor is started or restarted. This allows actors to recover their state, even after JVM crashes or when being migrated to another node.