From 2cb10a11c0e56535b0e35a00719d1fafb446b48c Mon Sep 17 00:00:00 2001 From: Andre Fonseca Date: Tue, 22 Nov 2022 15:01:27 +0000 Subject: [PATCH] Update README.md for a Internal QA (small typo) This is just a small typo fix in order to QA https://github.com/Expensify/Web-Expensify/pull/35597 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d456c5e52af4c..61734c2417eda 100644 --- a/README.md +++ b/README.md @@ -293,7 +293,7 @@ export default withOnyx({ This application is built with the following principles. 1. **Data Flow** - Ideally, this is how data flows through the app: 1. Server pushes data to the disk of any client (Server -> Pusher event -> Action listening to pusher event -> Onyx). - >**Note:** Currently the code only does this with report comments. Until we make more server changes, this steps is actually done by the client requesting data from the server via XHR and then storing the response in Onyx. + >**Note:** Currently the code only does this with report comments. Until we make more server changes, this step is actually done by the client requesting data from the server via XHR and then storing the response in Onyx. 2. Disk pushes data to the UI (Onyx -> withOnyx() -> React component). 3. UI pushes data to people's brains (React component -> device screen). 4. Brain pushes data into UI inputs (Device input -> React component).