From 2e9adef52e0432ccf000dfa10e81f6fb6f29e06d Mon Sep 17 00:00:00 2001 From: Rudolf Adamkovic Date: Thu, 26 Mar 2015 20:50:35 +0100 Subject: [PATCH 1/2] [website] Improve typography --- website/src/react-native/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/react-native/index.js b/website/src/react-native/index.js index 7ca53cef6..bd0f2babb 100644 --- a/website/src/react-native/index.js +++ b/website/src/react-native/index.js @@ -30,7 +30,7 @@ var index = React.createClass({

React Native enables you to build world-class application experiences on native platforms using a consistent developer experience based on JavaScript and {' '}React{'. '} - The focus of React Native is on developer efficiency across all the platforms you care about - learn once, write anywhere. + The focus of React Native is on developer efficiency across all the platforms you care about — learn once, write anywhere. Facebook uses React Native in multiple production apps and will continue investing in React Native.

From d1f70f64ded363d3f38008522c211f689b94aacc Mon Sep 17 00:00:00 2001 From: Rudolf Adamkovic Date: Fri, 27 Mar 2015 00:22:16 +0100 Subject: [PATCH 2/2] Fix typo in sample code --- Libraries/CustomComponents/ListView/ListView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/CustomComponents/ListView/ListView.js b/Libraries/CustomComponents/ListView/ListView.js index b098fc0dc..d4c105ba0 100644 --- a/Libraries/CustomComponents/ListView/ListView.js +++ b/Libraries/CustomComponents/ListView/ListView.js @@ -61,7 +61,7 @@ var SCROLLVIEW_REF = 'listviewscroll'; * * ``` * getInitialState: function() { - * var ds = new ListViewDataSource({rowHasChanged: (r1, r2) => r1 !== r2}); + * var ds = new ListView.DataSource({rowHasChanged: (r1, r2) => r1 !== r2}); * return { * dataSource: ds.cloneWithRows(['row 1', 'row 2']), * };