#1964 - Fixing doc example mistake in 0mq docs, no review

This commit is contained in:
Viktor Klang 2012-04-02 23:57:44 +02:00
parent e7723cb28e
commit b27bae2f10

View file

@ -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.