From e53766989f307f9c4e9ed197acc5ccb105016362 Mon Sep 17 00:00:00 2001 From: XiaoFeiDu Date: Wed, 12 May 2021 14:59:15 +0800 Subject: [PATCH] Fix the summaries --- src/NetMQ/Sockets/PublisherSocket.cs | 4 +++- src/NetMQ/Sockets/PushSocket.cs | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) 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) {