diff --git a/akka-samples/akka-sample-chat/README b/akka-samples/akka-sample-chat/README index 88720d8c55..66e54e3d44 100644 --- a/akka-samples/akka-sample-chat/README +++ b/akka-samples/akka-sample-chat/README @@ -17,10 +17,10 @@ Then to run the sample: - Set 'export AKKA_HOME=. - Run 'sbt console' to start up a REPL (interpreter). 4. In the first REPL you get execute: - - scala> import se.scalablesolutions.akka.sample.chat._ + - scala> import sample.chat._ - scala> ChatService.start -5. In the first REPL you get execute: - - scala> import se.scalablesolutions.akka.sample.chat._ +5. In the second REPL you get execute: + - scala> import sample.chat._ - scala> Runner.run 6. See the chat simulation run. 7. Run it again to see full speed after first initialization. diff --git a/akka-samples/akka-sample-chat/src/main/scala/ChatServer.scala b/akka-samples/akka-sample-chat/src/main/scala/ChatServer.scala index 6d4bf9679e..51c4c9f91c 100644 --- a/akka-samples/akka-sample-chat/src/main/scala/ChatServer.scala +++ b/akka-samples/akka-sample-chat/src/main/scala/ChatServer.scala @@ -33,10 +33,10 @@ Then to run the sample: - Set 'export AKKA_HOME=. - Run 'sbt console' to start up a REPL (interpreter). 2. In the first REPL you get execute: - - scala> import se.scalablesolutions.akka.sample.chat._ + - scala> import sample.chat._ - scala> ChatService.start -3. In the first REPL you get execute: - - scala> import se.scalablesolutions.akka.sample.chat._ +3. In the second REPL you get execute: + - scala> import sample.chat._ - scala> Runner.run 4. See the chat simulation run. 5. Run it again to see full speed after first initialization.