diff --git a/nanoFramework.System.Net.Http/Http/HttpMessageInvoker.cs b/nanoFramework.System.Net.Http/Http/HttpMessageInvoker.cs
index ea69471a..877139ab 100644
--- a/nanoFramework.System.Net.Http/Http/HttpMessageInvoker.cs
+++ b/nanoFramework.System.Net.Http/Http/HttpMessageInvoker.cs
@@ -28,7 +28,7 @@ public HttpMessageInvoker(HttpMessageHandler handler)
/// Initializes an instance of a class with a specific .
///
/// The responsible for processing the HTTP response messages.
- /// if the inner handler should be disposed of by , if you intend to reuse the inner handler.
+ /// if the inner handler should be disposed of by , if you intend to reuse the inner handler.
///
public HttpMessageInvoker(
HttpMessageHandler handler,
diff --git a/nanoFramework.System.Net.Http/Http/System.Net.HttpWebRequest.cs b/nanoFramework.System.Net.Http/Http/System.Net.HttpWebRequest.cs
index f7557d5c..2a25418f 100644
--- a/nanoFramework.System.Net.Http/Http/System.Net.HttpWebRequest.cs
+++ b/nanoFramework.System.Net.Http/Http/System.Net.HttpWebRequest.cs
@@ -404,7 +404,7 @@ public SslProtocols SslProtocols
/// times out. The default value is 300,000 milliseconds (5 minutes).
///
/// This property is used to control the timeout when calling
- /// and .
+ /// and .
/// This property affects Streams returned from
/// GetResponse().()
/// and
diff --git a/nanoFramework.System.Net.Http/Http/System.Net._InputNetworkStreamWrapper.cs b/nanoFramework.System.Net.Http/Http/System.Net._InputNetworkStreamWrapper.cs
index 941d30cf..124cc384 100644
--- a/nanoFramework.System.Net.Http/Http/System.Net._InputNetworkStreamWrapper.cs
+++ b/nanoFramework.System.Net.Http/Http/System.Net._InputNetworkStreamWrapper.cs
@@ -748,7 +748,7 @@ private Chunk GetChunk()
public override int Read(SpanByte buffer)
{
- throw new NotImplementedException();
+ throw new NotSupportedException();
}
private enum ChunkState
diff --git a/nanoFramework.System.Net.Http/Http/System.Net._OutputNetworkStreamWrapper.cs b/nanoFramework.System.Net.Http/Http/System.Net._OutputNetworkStreamWrapper.cs
index 3bb93e6c..37893726 100644
--- a/nanoFramework.System.Net.Http/Http/System.Net._OutputNetworkStreamWrapper.cs
+++ b/nanoFramework.System.Net.Http/Http/System.Net._OutputNetworkStreamWrapper.cs
@@ -290,7 +290,7 @@ public override void Write(byte[] buffer, int offset, int size)
public override int Read(SpanByte buffer)
{
- throw new NotImplementedException();
+ throw new NotSupportedException();
}
}
}