Fix spacing in documentation (#9070)

Replace non-breaking space by space.
This commit is contained in:
Sunny Ripert 2017-03-02 20:57:58 +01:00 committed by Brandon Dail
parent 2757a53fa5
commit 179240ca30
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ function CustomTextInput(props) {
Your first inclination may be to use refs to "make things happen" in your app. If this is the case, take a moment and think more critically about where state should be owned in the component hierarchy. Often, it becomes clear that the proper place to "own" that state is at a higher level in the hierarchy. See the [Lifting State Up](/react/docs/lifting-state-up.html) guide for examples of this.
### Legacy API: String Refs
### Legacy API: String Refs
If you worked with React before, you might be familiar with an older API where the `ref` attribute is a string, like `"textInput"`, and the DOM node is accessed as `this.refs.textInput`. We advise against it because string refs have [some issues](https://github.com/facebook/react/pull/8333#issuecomment-271648615), are considered legacy, and **are likely to be removed in one of the future releases**. If you're currently using `this.refs.textInput` to access refs, we recommend the callback pattern instead.