From 4a3536389b7ba8238f7922318e29527e649fd48d Mon Sep 17 00:00:00 2001 From: Michael Douglas Brett Date: Thu, 31 Mar 2016 10:40:20 +0100 Subject: [PATCH] Small copy change Slight change of wording to avoid specific [...] specific repetition. Feel free to ignore :) Michael --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0b89bf4..b8cb7a5 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ function UserBox(user) { ## State -A UI is NOT simply a replication of server / business logic state. There is actually a lot of state that is specific to a specific projection and not others. For example, if you start typing in a text field. That may or may not be replicated to other tabs or to your mobile device. Scroll position is a typical example that you almost never want to replicate across multiple projections. +A UI is NOT simply a replication of server / business logic state. There is actually a lot of state that is specific to an exact projection and not others. For example, if you start typing in a text field. That may or may not be replicated to other tabs or to your mobile device. Scroll position is a typical example that you almost never want to replicate across multiple projections. We tend to prefer our data model to be immutable. We thread functions through that can update state as a single atom at the top.