diff --git a/src/NetMQ/Sockets/PublisherSocket.cs b/src/NetMQ/Sockets/PublisherSocket.cs index 50457d5fb..07df059cf 100644 --- a/src/NetMQ/Sockets/PublisherSocket.cs +++ b/src/NetMQ/Sockets/PublisherSocket.cs @@ -28,7 +28,9 @@ internal PublisherSocket(SocketBase socketHandle) { } - /// doesn't support sending, so this override throws . + /// + /// doesn't support receiving, so this override throws . + /// /// Receive is not supported. public override bool TryReceive(ref Msg msg, TimeSpan timeout) { diff --git a/src/NetMQ/Sockets/PushSocket.cs b/src/NetMQ/Sockets/PushSocket.cs index fe0237652..47e124882 100644 --- a/src/NetMQ/Sockets/PushSocket.cs +++ b/src/NetMQ/Sockets/PushSocket.cs @@ -28,7 +28,9 @@ internal PushSocket(SocketBase socketHandle) { } - /// doesn't support sending, so this override throws . + /// + /// doesn't support receiving, so this override throws . + /// /// Receive is not supported. public override bool TryReceive(ref Msg msg, TimeSpan timeout) {