DOC: Fix compilation error in migration guide

This commit is contained in:
Patrik Nordwall 2013-07-08 09:30:18 +02:00
parent 157d0caf81
commit dad91e0a79

View file

@ -320,7 +320,7 @@ Instead, use actorSelection followed by identify request, and watch the verified
ref = actorRef
context watch ref
case ActorIdentity(_, None) => // not alive
case Terminated(`ref`) => // ...
case Terminated(r) if r == ref => // ...
}
Use ``watch`` instead of ``isTerminated``