diff --git a/Libraries/NewAppScreen/components/LearnMoreLinks.js b/Libraries/NewAppScreen/components/LearnMoreLinks.js
index b815e427f484da..da43a28ed77074 100644
--- a/Libraries/NewAppScreen/components/LearnMoreLinks.js
+++ b/Libraries/NewAppScreen/components/LearnMoreLinks.js
@@ -19,19 +19,18 @@ const links = [
{
title: 'The Basics',
link: 'https://facebook.github.io/react-native/docs/tutorial',
- description:
- 'Read the docs on what to do once seen how to work in React Native.',
+ description: 'Explains a Hello World for React Native.',
},
{
title: 'Style',
link: 'https://facebook.github.io/react-native/docs/style',
- description: 'All of the core components accept a prop named style.',
+ description:
+ 'Covers how to use the prop named style which controls the visuals.',
},
{
title: 'Layout',
link: 'https://facebook.github.io/react-native/docs/flexbox',
- description:
- 'A component can specify the layout of its children using the flexbox specification.',
+ description: 'React Native uses flexbox for layout, learn how it works.',
},
{
title: 'Components',
diff --git a/Libraries/NewAppScreen/components/ReloadInstructions.js b/Libraries/NewAppScreen/components/ReloadInstructions.js
index 3404b3e8817166..3f44eac65e126a 100644
--- a/Libraries/NewAppScreen/components/ReloadInstructions.js
+++ b/Libraries/NewAppScreen/components/ReloadInstructions.js
@@ -21,13 +21,13 @@ const ReloadInstructions = Platform.select({
ios: () => (
Press Cmd+R in the simulator to
- reload your app's code
+ reload your app's code.
),
default: () => (
Double tap R on your keyboard to
- reload your app's code
+ reload your app's code.
),
});
diff --git a/template/App.js b/template/App.js
index dd19a99df0e52c..fee529a8f21507 100644
--- a/template/App.js
+++ b/template/App.js
@@ -56,8 +56,7 @@ const App = () => {
Learn More
- Read the docs on what to do once seen how to work in React
- Native.
+ Read the docs to discover what to do next: