Fix typo of Diane's name

Those two American kids are just growing up as fast as they can, huh?
This commit is contained in:
Dave Rolsky 2022-01-06 10:11:47 -06:00
parent a9500f3413
commit 31bd010226

View file

@ -61,7 +61,7 @@ We can even match against values:
fn App(cx: Scope)-> Element {
match get_name() {
"jack" => cx.render(rsx!( "Hey Jack, how's Diane?" )),
"diane" => cx.render(rsx!( "Hey Diana, how's Jack?" )),
"diane" => cx.render(rsx!( "Hey Diane, how's Jack?" )),
name => cx.render(rsx!( "Hello, {name}!" )),
}
}