Skip to content

Commit 3f02347

Browse files
authored
Rename <Async> to React Async for consistency.
1 parent a4b498c commit 3f02347

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,20 +51,20 @@ assumptions about the shape of your data or the type of request.
5151

5252
> Versions 1.x and 2.x of `react-async` on npm are from a different project abandoned years ago. The original author was
5353
> kind enough to transfer ownership so the `react-async` package name could be repurposed. The first version of
54-
> `<Async>` is v3.0.0.
54+
> React Async is v3.0.0.
5555
5656
## Rationale
5757

58-
`<Async>` is different in that it tries to resolve data as close as possible to where it will be used, while using a
58+
React Async is different in that it tries to resolve data as close as possible to where it will be used, while using a
5959
declarative syntax, using just JSX and native promises. This is in contrast to systems like Redux where you would
6060
configure any data fetching or updates on a higher (application global) level, using a special construct
6161
(actions/reducers).
6262

63-
`<Async>` works really well even in larger applications with multiple or nested data dependencies. It encourages loading
63+
React Async works really well even in larger applications with multiple or nested data dependencies. It encourages loading
6464
data on-demand and in parallel at component level instead of in bulk at the route / page level. It's entirely decoupled
6565
from your routes, so it works well in complex applications that have a dynamic routing model or don't use routes at all.
6666

67-
`<Async>` is promise-based, so you can resolve anything you want, not just `fetch` requests.
67+
React Async is promise-based, so you can resolve anything you want, not just `fetch` requests.
6868

6969
## Install
7070

@@ -277,7 +277,7 @@ render() {
277277

278278
## Helper components
279279

280-
`<Async>` provides several helper components that make your JSX even more declarative.
280+
React Async provides several helper components that make your JSX even more declarative.
281281
They don't have to be direct children of `<Async>` and you can use the same component several times.
282282

283283
### `<Async.Loading>`

0 commit comments

Comments
 (0)