File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 99 <PublishReadyToRun >true</PublishReadyToRun >
1010 <SelfContained >true</SelfContained >
1111 <PublishSingleFile >true</PublishSingleFile >
12- <!-- We don't trim any of these, as if we do the JSON serializrts break. This is
12+ <!-- We don't trim any of these, as if we do the JSON serializers break. This is
1313 because they use reflection which is a documented thing that's likely to
1414 break. When we get source generators going, this might improve. -->
1515 <PublishTrimmed >false</PublishTrimmed >
Original file line number Diff line number Diff line change @@ -1053,7 +1053,7 @@ module Http =
10531053 let mutable ( byteArray : byte array ) = null
10541054 // asp.net doesn't add the final sequence required by
10551055 // `transfer-encoding:chunked`, relying instead on closing the connection
1056- // to indicate that the data in complete. However, the ChunkDecoder library
1056+ // to indicate that the data is complete. However, the ChunkDecoder library
10571057 // does not support this, and hangs while waiting on the final chunk. We
10581058 // add the final chunk ourselves to allow the library to finish its work.
10591059 let body =
Original file line number Diff line number Diff line change @@ -420,7 +420,7 @@ let runTestRequest
420420 let actualHeaders = normalizeActualHeaders actual.headers
421421
422422 // Decompress the body if returned with a content-encoding. Throws an exception
423- // if content-encoding is set and the body is not encrypted . This lets us test
423+ // if content-encoding is set and the body is not compressed . This lets us test
424424 // that the server returns compressed content
425425 let actual =
426426 { actual with body = Http.decompressIfNeeded actual.headers actual.body }
You can’t perform that action at this time.
0 commit comments