aboutsummaryrefslogtreecommitdiff
path: root/lib/Net.Http
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-08-14 11:43:35 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2023-08-14 11:43:35 -0400
commit3f5eb61fc7166674a5424d5f8e8c23a775c27614 (patch)
tree55a759d2cb0906251ac2dd5aec5e8551b7fb7594 /lib/Net.Http
parent692398494aa9dc49738da3a12e0b884ee4e56287 (diff)
Compression api exposed and tests updated
Diffstat (limited to 'lib/Net.Http')
-rw-r--r--lib/Net.Http/src/Core/Response/ResponseWriter.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Net.Http/src/Core/Response/ResponseWriter.cs b/lib/Net.Http/src/Core/Response/ResponseWriter.cs
index 97b734a..b6b2488 100644
--- a/lib/Net.Http/src/Core/Response/ResponseWriter.cs
+++ b/lib/Net.Http/src/Core/Response/ResponseWriter.cs
@@ -24,7 +24,7 @@
/*
* This file handles response entity processing. It handles in-memory response
- * processing, as well as stream response processing. It handles contraints
+ * processing, as well as stream response processing. It handles constraints
* such as content-range limits. I tried to eliminate or reduce the amount of
* memory copying required to process the response entity.
*/
@@ -35,7 +35,6 @@ using System.Threading;
using System.Threading.Tasks;
using System.Runtime.CompilerServices;
-using VNLib.Utils.IO;
using VNLib.Utils.Memory;
using VNLib.Net.Http.Core.Response;
using VNLib.Net.Http.Core.Compression;