Skip to content

Commit 2aad30b

Browse files
committed
docs: changelog spelling
1 parent 3b27ea7 commit 2aad30b

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
method can return synchronously.
1717
- Fix `ReadableStreamSource.fromStream` cancel after error ([#6](https://github.com/Zekfad/fetch_api/issues/6))
1818
- Add `canStreamRequests` function to check if streaming is supported in
19-
current browser.
19+
current browsers.
2020

2121
## 2.2.0
2222

@@ -30,7 +30,7 @@
3030
single `AbortType`.
3131
Method itself now always returns `ReadableStream<JSUint8Array, AbortType>`,
3232
this means that any `TypedData` is re-viewed to be `Uint8List`.
33-
- **BREAKING** `RequestBody` and `ResponseBody` now constructable only from
33+
- **BREAKING** `RequestBody` and `ResponseBody` now constructible only from
3434
JS types:
3535
- Removed `fromByteBuffer` instead added `fromJSArrayBuffer`.
3636
- Removed `fromTypedData` instead added `fromJSTypedArray`.
@@ -42,13 +42,13 @@
4242
- Fixed `Response` and `Request` not working in WASM: this happened due to JS
4343
runtime being more lax in type assertions, namely `JSString` as `String` is
4444
ok in JS runtime, but fails in WASM.
45-
- `Response` and `Request` now uses precise type
45+
- `Response` and `Request` now use precise type
4646
`ReadableStream<JSUint8Array, JSAny>`
4747

4848
## 2.1.0
4949

5050
- Add `package:fetch_api/enums.dart` `fetch_api.enums` package with enumerations
51-
available to all platforms (including VM).
51+
available for all platforms (including VM).
5252
- Use `DOMException` from `package:web` instead of alias to`JSObject`.
5353
- Enumerations use `if (dart.library.io) ''` for documentation-only imports,
5454
this allows to use them in non-JS environments.
@@ -59,7 +59,7 @@
5959
- Full rewrite to use `extension type`s - no more `InstanceMembers`.
6060
- Internal JS Iterators are now fully covered with generics.
6161
- JS Iterator is no longer exported via public API.
62-
- `Headers` uses `(String, String)` in entries instead of `List<String>`.
62+
- `Headers` now use `(String, String)` in entries instead of `List<String>`.
6363
- `FetchOptions` and `RequestOptions` are now inherited from `RequestInit`
6464
and interchangeable.
6565
- `ReadableStreamSource` `start`, `pull` and `cancel` are now only callable
@@ -89,7 +89,7 @@
8989
## 1.0.0-dev.5
9090

9191
- **BREAKING**: Renamed `RequestInit` to `FetchOptions`.
92-
This is done to make emphasis, that `fetch` and `Request` have different
92+
This is done to make emphatic, that `fetch` and `Request` have different
9393
(default) behaviors.
9494
- Added `Request`.
9595
- Added `RequestDuplex`. This adds support for request streaming in supported
@@ -108,7 +108,7 @@
108108
- Added `createRequestOptions`.
109109
- Added `createReadableStream`.
110110
- Added `createReadableStreamSourceFromStream`.
111-
- Fixed dev dependencies versions, to allow running on Dart 2.19.
111+
- Fixed dev dependency versions, to allow running on Dart 2.19.
112112

113113

114114
## 1.0.0-dev.4

0 commit comments

Comments
 (0)