You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* chore(bump-typedoc): bump typedoc to ^0.23.23
* feat(add-footer): add footer to core theme
* chore(pin-typedoc): pin typedoc to 0.23.23
* fix(remove-private-docs): and format typedoc.json
* fix(urls): mimic historic client urls
* fix(revert): revert to exclude ruleset and mimic current navigation experience
* fix(docs): pin typedoc in private/*
* fix(theme): redirect regression and add border to classes index section
* fix(theme): slight modification of border in theme
Copy file name to clipboardExpand all lines: README.md
+16-15
Original file line number
Diff line number
Diff line change
@@ -330,13 +330,13 @@ Many AWS operations return paginated results when the response object is too lar
330
330
331
331
In AWS SDK for JavaScript v3 we’ve improved pagination using async generator functions, which are similar to generator functions, with the following differences:
332
332
333
-
- When called, async generator functions return an object, an async generator whose methods (`next`, `throw`, and `return`) return promises for { `value`, `done` }, instead of directly returning { `value`, `done` }. This automatically makes the returned async generator objects async iterators.
333
+
- When called, async generator functions return an object, an async generator whose methods (`next`, `throw`, and `return`) return promises for `{ `value`, `done` }`, instead of directly returning `{ `value`, `done` }`. This automatically makes the returned async generator objects async iterators.
334
334
- await expressions and `for await (x of y)` statements are allowed.
335
335
- The behavior of `yield*` is modified to support delegation to async iterables.
336
336
337
337
The Async Iterators were added in the ES2018 iteration of JavaScript. They are supported by Node.js 10.x+ and by all modern browsers, including Chrome 63+, Firefox 57+, Safari 11.1+, and Edge 79+. If you’re using TypeScript v2.3+, you can compile Async Iterators to older versions of JavaScript.
338
338
339
-
An async iterator is much like an iterator, except that its `next()` method returns a promise for a { `value`, `done` } pair. As an implicit aspect of the Async Iteration protocol, the next promise is not requested until the previous one resolves. This is a simple, yet a very powerful pattern.
339
+
An async iterator is much like an iterator, except that its `next()` method returns a promise for a `{ `value`, `done` }` pair. As an implicit aspect of the Async Iteration protocol, the next promise is not requested until the previous one resolves. This is a simple, yet a very powerful pattern.
340
340
341
341
#### Example Pagination Usage
342
342
@@ -511,27 +511,28 @@ For a full middleware stack deep dive please check out our [blog post](https://a
511
511
512
512
## Release Cadence
513
513
514
-
Our releases usually happen once per weekday. Each release increments the
514
+
Our releases usually happen once per weekday. Each release increments the
0 commit comments