1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-10-03 08:41:55 +00:00

fix example

This commit is contained in:
Nikolay Kim 2018-03-04 10:44:41 -08:00
parent 11347e3c7d
commit dbfa1f0ac8

View file

@ -88,7 +88,7 @@ impl Handler<ClientCommand> for ChatClient {
type Result = ();
fn handle(&mut self, msg: ClientCommand, ctx: &mut Context<Self>) {
self.0.text(msg.0.as_str())
self.0.text(msg.0)
}
}