Skip to content
This repository has been archived by the owner on Dec 15, 2020. It is now read-only.

Commit

Permalink
Update Tutorial.md fixing typo
Browse files Browse the repository at this point in the history
Summary:
Thanks for submitting a PR! Please read these instructions carefully:

- [x] Explain the **motivation** for making this change.
- [x] Provide a **test plan** demonstrating that the code is solid.
- [x] Match the **code formatting** of the rest of the codebase.

## Motivation (required)

What existing problem does the pull request solve?

JavaScript was spelt incorrectly. Fixing the typo helps users understand what JSX is translated into.

## Test Plan (required)

A good test plan has the exact commands you ran and their output, provides screenshots or videos if the pull request changes UI or updates the website. See [What is a Test Plan?][1] to learn more.

If you have added code that should be tested, add tests.

N/A

## Next Steps

Sign the [CLA][2], if you haven't already.

Small pull requests are much easier to review and more likely to get merged. Make sure the PR does only one thing, otherwise please split it.

Make sure all **tests pass** on [Circle CI][3]. PRs that break tests are unlikely to be merged.

For more info, see the ["Pull Requests"][4] section of our "Contributing" guidelines.

[1]: https://medium.com/martinkonicek/what-is-a-test-plan-8bfc840ec171#.y9lcuqqi9
[2]: https://code.facebook.com/cla
[3]: http://circleci.com/gh/facebook/react-native
[4]: https://github.com/facebook/react-vr/blob/master/CONTRIBUTING.md#pull-requests
Closes #217

Reviewed By: DigiTec, mikearmstrong001

Differential Revision: D5184904

fbshipit-source-id: 3d33a5c
  • Loading branch information
ltfschoen authored and facebook-github-bot committed Jun 6, 2017
1 parent d326f28 commit a535145
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/Tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ React Native ships with ES2015 support, so you can use it without worrying about
`import`, `from`, `class`, `extends`, and the `() =>` syntax in the example above are all ES2015 features.
[This page](https://babeljs.io/docs/learn-es2015/) has a good overview of ES2015 features.

The statements such as `<Text style={{ fontSize: 0.8, ...}}>hello</Text>` above make use of JSX, which is ultimately translated into JavaScipt. For more information, see [React VR Overview](docs/react-vroverview.html).
The statements such as `<Text style={{ fontSize: 0.8, ...}}>hello</Text>` above make use of JSX, which is translated into JavaScript. For more information, see [React VR Overview](docs/react-vroverview.html).

## AppRegistry

Expand Down

0 comments on commit a535145

Please sign in to comment.