Skip to content

Commit 805a147

Browse files
authored
Fix some spelling (#884)
1 parent 5a2f036 commit 805a147

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

pkgs/cronet_http/example/integration_test/client_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Future<void> testClientFromFutureFails() async {
3535
test('cronet engine future fails', () async {
3636
final engineFuture = CronetEngine.build(
3737
cacheMode: CacheMode.disk,
38-
storagePath: '/non-existant-path/', // Will cause `build` to throw.
38+
storagePath: '/non-existent-path/', // Will cause `build` to throw.
3939
userAgent: 'Test Agent (Future)');
4040

4141
final client = CronetClient.fromCronetEngineFuture(engineFuture);

pkgs/cupertino_http/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
## 0.0.6
4848

49-
* Make the number of simulateous connections allowed to the same host
49+
* Make the number of simultaneous connections allowed to the same host
5050
configurable.
5151
* Fixes
5252
[cupertino_http: Failure calling Dart_PostCObject_DL](https://github.com/dart-lang/http/issues/785).

pkgs/http_client_conformance_tests/lib/src/request_body_streamed_server.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import 'dart:io';
88

99
import 'package:stream_channel/stream_channel.dart';
1010

11-
/// Starts an HTTP server that absorbes a request stream of integers and
11+
/// Starts an HTTP server that absorbs a request stream of integers and
1212
/// signals the client to quit after 1000 have been received.
1313
///
1414
/// Channel protocol:

pkgs/http_client_conformance_tests/lib/src/request_headers_tests.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ void testRequestHeaders(Client client) async {
3535
await client.get(Uri.http(host, ''), headers: {'FOO': 'BAR'});
3636

3737
final headers = await httpServerQueue.next as Map;
38-
// RFC 2616 14.44 states that header field names are case-insensive.
38+
// RFC 2616 14.44 states that header field names are case-insensitive.
3939
// http.Client canonicalizes field names into lower case.
4040
expect(headers['foo'], ['BAR']);
4141
});

pkgs/http_client_conformance_tests/lib/src/response_headers_tests.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ void testResponseHeaders(Client client) async {
3434
httpServerChannel.sink.add({'foo': 'BAR'});
3535

3636
final response = await client.get(Uri.http(host, ''));
37-
// RFC 2616 14.44 states that header field names are case-insensive.
37+
// RFC 2616 14.44 states that header field names are case-insensitive.
3838
// http.Client canonicalizes field names into lower case.
3939
expect(response.headers['foo'], 'BAR');
4040
});

0 commit comments

Comments
 (0)