Misc additions to, and rewrites and formatting of, the documentation.

Signed-off-by: Jonas Bonér <jonas@jonasboner.com>
This commit is contained in:
Jonas Bonér 2011-12-15 14:26:17 +01:00
parent b0e630a239
commit ce296b0481
29 changed files with 270 additions and 223 deletions

View file

@ -6,7 +6,6 @@ import org.scalatest.matchers.MustMatchers
//#imports
import akka.actor.ActorSystem
import com.typesafe.config.ConfigFactory
//#imports
class ConfigDocSpec extends WordSpec with MustMatchers {
@ -15,7 +14,7 @@ class ConfigDocSpec extends WordSpec with MustMatchers {
//#custom-config
val customConf = ConfigFactory.parseString("""
akka.actor.deployment {
/user/my-service {
/my-service {
router = round-robin
nr-of-instances = 3
}
@ -27,7 +26,5 @@ class ConfigDocSpec extends WordSpec with MustMatchers {
//#custom-config
system.shutdown()
}
}