Skip to content

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
zsxwing committed Jan 19, 2016
1 parent 9a1b275 commit d495ecc
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ object ActorSupervisorStrategy {
* }
* }
*
* // Can be used with AkkaUtils.createStream as follows
* AkkaUtils.createStream[String](Props[MyActor](),"MyActorReceiver")
*
* }}}
Expand Down Expand Up @@ -104,12 +103,12 @@ abstract class ActorReceiver extends Actor {
*
* @example {{{
* class MyActor extends JavaActorReceiver {
* def receive {
* case anything: String => store(anything)
* @Override
* public void onReceive(Object msg) throws Exception {
* store((String) msg);
* }
* }
*
* // Can be used with AkkaUtils.createStream as follows
* AkkaUtils.<String>createStream(Props.create(MyActor.class), "MyActorReceiver");
*
* }}}
Expand Down

0 comments on commit d495ecc

Please sign in to comment.