Remove invalid comma from Animated example

Summary:Helps for suckers like me, who copy and paste example code ;)
Closes https://github.com/facebook/react-native/pull/5133

Differential Revision: D3074849

Pulled By: mkonicek

fb-gh-sync-id: 8311dc26b173e341433866f66db374464c3c9f63
shipit-source-id: 8311dc26b173e341433866f66db374464c3c9f63
This commit is contained in:
Aaron Franks 2016-03-20 11:01:56 -07:00 committed by Facebook Github Bot 6
parent a3ba25ed90
commit 11985d5c77

View File

@ -1536,7 +1536,7 @@ var event = function(
* componentDidMount() {
* Animated.timing( // Uses easing functions
* this.state.fadeAnim, // The value to drive
* {toValue: 1}, // Configuration
* {toValue: 1} // Configuration
* ).start(); // Don't forget start!
* }
* render() {