diff --git a/akka-docs/cluster/durable-mailbox.rst b/akka-docs/cluster/durable-mailbox.rst index 212308e8d6..328a46adaa 100644 --- a/akka-docs/cluster/durable-mailbox.rst +++ b/akka-docs/cluster/durable-mailbox.rst @@ -143,7 +143,7 @@ This mailbox is backed by `ZooKeeper `_. ZooKeeper is a centralized service for maintaining configuration information, naming, providing distributed synchronization, and providing group services This means that you have to start up a ZooKeeper server (for production a ZooKeeper server -ensamble) that can host these durable mailboxes. Read more in the ZooKeeper +ensemble) that can host these durable mailboxes. Read more in the ZooKeeper documentation on how to do that. Akka is using ZooKeeper for many other things, for example the clustering diff --git a/akka-remote/src/main/scala/akka/remote/netty/NettyRemoteSupport.scala b/akka-remote/src/main/scala/akka/remote/netty/NettyRemoteSupport.scala index 25c5f8b028..982fd3b80b 100644 --- a/akka-remote/src/main/scala/akka/remote/netty/NettyRemoteSupport.scala +++ b/akka-remote/src/main/scala/akka/remote/netty/NettyRemoteSupport.scala @@ -161,7 +161,7 @@ abstract class RemoteClient private[akka] ( private[remote] def isRunning = runSwitch.isOn - protected def notifyListeners(msg: => Any); Unit + protected def notifyListeners(msg: => Any): Unit protected def currentChannel: Channel