diff --git a/akka-docs/scala/zeromq.rst b/akka-docs/scala/zeromq.rst index 25cf321f8e..5c06aeda23 100644 --- a/akka-docs/scala/zeromq.rst +++ b/akka-docs/scala/zeromq.rst @@ -113,11 +113,11 @@ Akka ZeroMQ module supports ``Rep-Req`` connections. You can create a ``Rep`` connection through the:: - def newReqSocket(socketParameters: Array[SocketOption]): ActorRef + def newRepSocket(socketParameters: Array[SocketOption]): ActorRef You can create a ``Req`` connection through the:: - def newRepSocket(socketParameters: Array[SocketOption]): ActorRef + def newReqSocket(socketParameters: Array[SocketOption]): ActorRef More documentation and examples will follow soon.