nit: Fixed extra space before > in Accessibility documentation

Summary:TSIA
Closes https://github.com/facebook/react-native/pull/6432

Differential Revision: D3047376

Pulled By: mkonicek

fb-gh-sync-id: 1f88b3be72c72234764b2b7dec034dea62533e97
shipit-source-id: 1f88b3be72c72234764b2b7dec034dea62533e97
This commit is contained in:
Wei Yeh 2016-03-14 08:01:33 -07:00 committed by Facebook Github Bot 6
parent b006f79bf5
commit 7fbaf0a89d
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ On Android, accessible={true} property for a react-native View will be tra
```javascript
<View accessible={true}>
<Text>text one</Text>
<Text >text two</Text>
<Text>text two</Text>
</View>
```