From ee3b3c86eb84dfc64d94d418b7355bd4f96efa69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Fri, 5 Dec 2025 03:37:46 +0100 Subject: [PATCH] Update overview example in `README` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9cfa03de..6860e385 100644 --- a/README.md +++ b/README.md @@ -142,7 +142,7 @@ And that's everything! We just wrote a whole user interface. Let's run it: ```rust fn main() -> iced::Result { - iced::run("A cool counter", Counter::update, Counter::view) + iced::run(Counter::update, Counter::view) } ```