=doc add missing module (#21188)

This commit is contained in:
Nafer Sanabria 2016-08-16 08:22:05 -05:00 committed by Konrad Malawski
parent 1cb088ed81
commit 90aba99340
2 changed files with 4 additions and 2 deletions

View file

@ -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

View file

@ -60,7 +60,7 @@ and :ref:`Scala <cluster_usage_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.