Skip to content

Commit f489b49

Browse files
authored
Merge pull request #139 from reactjs/sync-68e4efcf
Sync with reactjs.org @ 68e4efc
2 parents 9522d18 + 992b0a3 commit f489b49

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

content/docs/concurrent-mode-reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ For more information on Concurrent Mode, check out the [Concurrent Mode document
5959

6060
`Suspense` lets your components "wait" for something before they can render, showing a fallback while waiting.
6161

62-
In this example, `ProfileDetails` is waiting for an asynchronous API call to fetch some data. While we wait for `ProfileDetails` and `ProfilePhoto`, we will show the `Loading...` fallback instead. It is important to note that until all children inside `<Suspense>` has loaded, we will continue to show the fallback.
62+
In this example, `ProfileDetails` is waiting for an asynchronous API call to fetch some data. While we wait for `ProfileDetails` and `ProfilePhoto`, we will show the `Loading...` fallback instead. It is important to note that until all children inside `<Suspense>` have loaded, we will continue to show the fallback.
6363

6464
`Suspense` takes two props:
6565
* **fallback** takes a loading indicator. The fallback is shown until all of the children of the `Suspense` component have finished rendering.

content/docs/higher-order-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ The `compose` utility function is provided by many third-party libraries includi
297297

298298
## Convention: Wrap the Display Name for Easy Debugging {#convention-wrap-the-display-name-for-easy-debugging}
299299

300-
The container components created by HOCs show up in the [React Developer Tools](https://github.com/facebook/react-devtools) like any other component. To ease debugging, choose a display name that communicates that it's the result of a HOC.
300+
The container components created by HOCs show up in the [React Developer Tools](https://github.com/facebook/react/tree/master/packages/react-devtools) like any other component. To ease debugging, choose a display name that communicates that it's the result of a HOC.
301301

302302
The most common technique is to wrap the display name of the wrapped component. So if your higher-order component is named `withSubscription`, and the wrapped component's display name is `CommentList`, use the display name `WithSubscription(CommentList)`:
303303

0 commit comments

Comments
 (0)