From 15cf7f98abbd1d47880bd460a24584729043030a Mon Sep 17 00:00:00 2001 From: Aaron Smith <83140718+centau@users.noreply.github.com> Date: Tue, 22 Aug 2023 13:05:48 +0100 Subject: [PATCH] Update docs --- README.md | 4 ++-- docs/tut/crash-course/1-introduction.md | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5c8eab3..b3f9a8b 100644 --- a/README.md +++ b/README.md @@ -10,10 +10,10 @@ Vide is a reactive UI library. -- Uses Luau typechecking +- Fully Luau typecheckable - Declarative and concise syntax. - Minimal imports. -- Reactive state driven. +- Reactively driven. ## Getting started diff --git a/docs/tut/crash-course/1-introduction.md b/docs/tut/crash-course/1-introduction.md index 83803fa..0197384 100644 --- a/docs/tut/crash-course/1-introduction.md +++ b/docs/tut/crash-course/1-introduction.md @@ -16,8 +16,10 @@ worrying about manually updating UI instances. Some of the main focuses behind Vide's design choices: - Concise syntax to reduce verbosity as much as possible. -- Reducing the amount of imports needed for usage by using Luau's syntax and - semantics. +- Reducing the amount of imports needed for usage by leveraging Luau's syntax + and semantics. - Being completely typecheckable. - Flexibility, particularly with integrating other libraries and allowing users to use their own patterns. +- A powerful reactive system that does not interfere with the lifetime of + instances.