diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a4a48578..0276a37f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ - Fetch module and API heavily changed (breaking) - Added support for `request​Animation​Frame`, which improves render performance, especially for animations +- Styles no longer implicitly add `px`. Added `unit!` macro in its place. - `Map` can now be used directly in elements, without needing to annotate type and collect (ie for child `Elements`, and `Listener`s) - Fixed a bug where `empty` elements at the top-level were rendering in the wrong order diff --git a/examples/counter/src/lib.rs b/examples/counter/src/lib.rs index e6ae98901..6243f0265 100644 --- a/examples/counter/src/lib.rs +++ b/examples/counter/src/lib.rs @@ -95,7 +95,7 @@ fn view(model: &Model) -> El { }, ], success_level(model.count), // Incorporating a separate component - h3!["What precisely is it we're counting?"], + h3!["What are we counting?"], input![ attrs! {At::Value => model.what_we_count}, input_ev(Ev::Input, Msg::ChangeWWC),