Skip to content

Commit ac918c2

Browse files
committed
apply review feedback
1 parent 02aabc3 commit ac918c2

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

docs/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export default YourApp;
5151

5252
The above is a Snack Player. It’s a handy tool created by Expo to embed and run React Native projects and share how they render in platforms like Android and iOS. The code is live and editable, so you can play directly with it in your browser. Go ahead and try changing the "Try editing me!" text above to "Hello, world!"
5353

54-
:::note
54+
:::tip
5555
Optionally, if you want to set up a local development environment, [you can follow our guide to setting up your environment on your local machine](set-up-your-environment) and paste the code examples into your project. (If you are a web developer, you may already have a local environment set up for mobile browser testing!)
5656
:::
5757

docs/testing-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ There are several libraries that can help you testing these:
140140
- [React Native Testing Library](https://callstack.github.io/react-native-testing-library/) builds on top of React’s test renderer and adds `fireEvent` and `query` APIs described in the next paragraph.
141141
- [Deprecated] React’s [Test Renderer](https://react.dev/blog/2024/04/25/react-19-upgrade-guide#deprecated-react-test-renderer), developed alongside its core, provides a React renderer that can be used to render React components to pure JavaScript objects, without depending on the DOM or a native mobile environment.
142142

143-
:::warning Caution
143+
:::warning
144144
Component tests are only JavaScript tests running in Node.js environment. They do _not_ take into account any iOS, Android, or other platform code which is backing the React Native components. It follows that they cannot give you a 100% confidence that everything works for the user. If there is a bug in the iOS or Android code, they will not find it.
145145
:::
146146

docs/typescript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ This command adds the latest version of every dependency. The versions may need
5252

5353
3. Rename a JavaScript file to be `*.tsx`
5454

55-
:::warning Caution
55+
:::warning
5656
You should leave the `./index.js` entrypoint file as it is otherwise you may run into an issue when it comes to bundling a production build.
5757
:::
5858

0 commit comments

Comments
 (0)