diff --git a/nanoFramework.System.Net/Sockets/NetworkStream.cs b/nanoFramework.System.Net/Sockets/NetworkStream.cs
index a0588fa..ac48e20 100644
--- a/nanoFramework.System.Net/Sockets/NetworkStream.cs
+++ b/nanoFramework.System.Net/Sockets/NetworkStream.cs
@@ -53,9 +53,9 @@ public class NetworkStream : Stream
// nonblocking state.
///
- /// Creates a new instance of the System.Net.Sockets.NetworkStream class for the specified System.Net.Sockets.Socket.
+ /// Creates a new instance of the class for the specified .
///
- /// The System.Net.Sockets.Socket that the System.Net.Sockets.NetworkStream will use to send and receive data.
+ /// The that the will use to send and receive data.
public NetworkStream(Socket socket)
: this(socket, false)
{
@@ -86,13 +86,13 @@ public NetworkStream(Socket socket)
// socket is null.
///
- /// Initializes a new instance of the System.Net.Sockets.NetworkStream class for the specified
- /// System.Net.Sockets.Socket with the specified System.Net.Sockets.Socket ownership.
+ /// Initializes a new instance of the class for the specified
+ /// with the specified ownership.
///
- /// true to indicate that the System.Net.Sockets.NetworkStream will take ownership of the System.Net.Sockets.Socket;
- /// otherwise, false.
- /// The System.Net.Sockets.Socket that the System.Net.Sockets.NetworkStream will
+ /// The that the will
/// use to send and receive data.
+ /// to indicate that the will take ownership of the ;
+ /// otherwise, .
public NetworkStream(Socket socket, bool ownsSocket)
{
if (socket == null) throw new ArgumentNullException();