From b8b890977eb14ec24c94ac86508d1f2c6c925e20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20J=C3=A4ger?= Date: Mon, 14 May 2018 14:19:33 +0200 Subject: [PATCH] Fix structured comments --- S7.Net/COTP.cs | 2 ++ S7.Net/TPKT.cs | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/S7.Net/COTP.cs b/S7.Net/COTP.cs index 8738aa1..0781709 100644 --- a/S7.Net/COTP.cs +++ b/S7.Net/COTP.cs @@ -91,6 +91,7 @@ namespace S7.Net /// Reads the full COTP TSDU (Transport service data unit) /// See: https://tools.ietf.org/html/rfc905 /// + /// The stream to read from /// Data in TSDU public static byte[] Read(Stream stream) { @@ -112,6 +113,7 @@ namespace S7.Net /// Reads the full COTP TSDU (Transport service data unit) /// See: https://tools.ietf.org/html/rfc905 /// + /// The stream to read from /// Data in TSDU public static async Task ReadAsync(Stream stream) { diff --git a/S7.Net/TPKT.cs b/S7.Net/TPKT.cs index 74946c9..2b71cec 100644 --- a/S7.Net/TPKT.cs +++ b/S7.Net/TPKT.cs @@ -19,7 +19,7 @@ namespace S7.Net /// /// Reads a TPKT from the socket /// - /// + /// The stream to read from /// TPKT Instance public static TPKT Read(Stream stream) { @@ -45,7 +45,7 @@ namespace S7.Net /// /// Reads a TPKT from the socket Async /// - /// The socket to read from + /// The stream to read from /// Task TPKT Instace public static async Task ReadAsync(Stream stream) {