From fd89143f539bb50b5354620cafe5f566441a0a22 Mon Sep 17 00:00:00 2001 From: Guilherme Rodrigues Date: Tue, 30 Jun 2015 15:23:55 -0300 Subject: [PATCH] Fix typo in "isomorphic" and switches to universal --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5f89eb80f5..4f8585dee8 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ Read **[The Evolution of Flux Frameworks](https://medium.com/@dan_abramov/the-ev * Everything (Stores, Action Creators, configuration) is hot reloadable. * Preserves the benefits of Flux, but adds other nice properties thanks to its functional nature. * Prevents some of the anti-patterns common in Flux code. -* Works great in isomoprhic apps because it doesn't use singletons and the data can be rehydrated. +* Works great in [universal (aka “isomorphic”)](https://medium.com/@mjackson/universal-javascript-4761051b7ae9) apps because it doesn't use singletons and the data can be rehydrated. * Doesn't care how you store your data: you may use JS objects, arrays, ImmutableJS, etc. * Under the hood, it keeps all your data in a tree, but you don't need to think about it. * Lets you efficiently subscribe to finer-grained updates than individual Stores.