From a10e6ca8dbc19c4c86eb4655c14ddbaa6f44b06e Mon Sep 17 00:00:00 2001 From: Timothy Farrell Date: Thu, 1 Aug 2019 06:50:07 -0400 Subject: [PATCH] Minor doc tweaks --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4512604..71b6eae 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,13 @@ # Reactimal Reactimal provides a set of primitives that can be used to express your code as a logic graph using -reactive programming methods. Reactive programming inverts the dependency relationship between +reactive programming methods. + +Reactive programming inverts the dependency relationship between functions and their inputs. No longer do callers need to know the signature of the functions they call. Instead computed values subscribe to scalar properties or other computed values. The -reactive method improves code readability and reduces the tendency toward spaghetti code. +reactive programming method is ideal for state that changes as a result of external inputs or events. +It also improves code readability and reduces the tendency toward spaghetti code. Reactimal provides the following reactive programming primitives. Each type of primitive is [subscribable](./docs/subscribable.md) and provides a single output value (or promise), but differ