Formatting fixes

Summary:
What existing problem does the pull request solve?
It fixes some formatting issues that appear in the React Native documentation.

**Test plan**
Run the documentation extraction and verify the content appears correctly as `code` formatted sections.
Closes https://github.com/facebook/react-native/pull/12346

Differential Revision: D4553340

Pulled By: hramos

fbshipit-source-id: b8307b3c3e1c3451f740c46222e10ec3c45e3008
This commit is contained in:
Andrew Monshizadeh 2017-02-13 13:31:07 -08:00 committed by Facebook Github Bot
parent 0a86c1cb15
commit 8b63fd7bb2
1 changed files with 2 additions and 2 deletions

View File

@ -139,13 +139,13 @@ const Text = React.createClass({
/**
* This function is called on press.
*
* e.g., `onPress={() => console.log('1st')}``
* e.g., `onPress={() => console.log('1st')}`
*/
onPress: PropTypes.func,
/**
* This function is called on long press.
*
* e.g., `onLongPress={this.increaseSize}>``
* e.g., `onLongPress={this.increaseSize}>`
*/
onLongPress: PropTypes.func,
/**