From fca956d6fa9c3c803bc477d4fe4863ff7cd47030 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Mart=C3=ADnez?= <49537445+JasterV@users.noreply.github.com> Date: Tue, 19 Aug 2025 19:06:35 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e30755f..85c6db8 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ This is an experimental project that aims to build an Elm-like framework for TUI development in Rust. -My main motivation to build this was to understand if I could structure a Ratatui application in an Elm-like fashion. +My main motivation to build this was to understand if I could structure a [Ratatui](https://github.com/ratatui/ratatui) application in an Elm-like fashion. The provided templates from the Ratatui official sources write code in a very procedural way, abusing of mutability a bit too much for my taste. (That is, using `&mut` all over the place in function arguments).