From c94e939919ca311e890e8af8e94277cc750ba327 Mon Sep 17 00:00:00 2001 From: Espen J Date: Thu, 16 Jun 2016 07:59:38 -0700 Subject: [PATCH] Fixed wrong description of output text in Tutorial-CoreComponents.md Summary: Closes https://github.com/facebook/react-native/pull/8052 Differential Revision: D3444425 Pulled By: JoelMarcey fbshipit-source-id: 5a748e40829084cdf0c5fbd94c41b00d01919878 --- docs/Tutorial-CoreComponents.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Tutorial-CoreComponents.md b/docs/Tutorial-CoreComponents.md index 0cac871ac..e893aed27 100644 --- a/docs/Tutorial-CoreComponents.md +++ b/docs/Tutorial-CoreComponents.md @@ -15,7 +15,7 @@ React Native has a number of core components that are commonly used in applicati The most basic component in React Native is the [`Text`](/react-native/docs/text.html#content) component. The `Text` component simply renders text. -This example displays the `string` `"Hello"` on the device. +This example displays the `string` `"Hello World!"` on the device. ```JavaScript import React from 'react';