Skip to content

Commit 1b27732

Browse files
committed
Fix typos
1 parent 958a4df commit 1b27732

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

fsharp-backend/src/BwdServer/BwdServer.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
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>

fsharp-backend/tests/TestUtils/TestUtils.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 =

fsharp-backend/tests/Tests/BwdServer.Tests.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 }

0 commit comments

Comments
 (0)