Updates referencesource to .NET 4.7
[mono.git] / mcs / class / referencesource / System / net / System / Net / _ChunkParser.cs
index 8b48cb8cac078f4cba42d017198a19840760a56b..47b3d4604529f8fe49720db9bd119d6f4e86984d 100644 (file)
@@ -12,7 +12,7 @@ using System.Threading;
 
 namespace System.Net
 {
-    // This class is a helper for parsing chunked HTTP responses. Usage is to either call Read() ([....]) or ReadAsync()
+    // This class is a helper for parsing chunked HTTP responses. Usage is to either call Read() (sync) or ReadAsync()
     // (async) methods to retrieve the response payload (without chunk metadata).
     // The buffer passed to the .ctor is owned by the ChunkParser until the whole response is read (i.e. Read/
     // ReadAsync return 0 bytes) or an error occurs.