1
0
mirror of https://github.com/actix/actix-website synced 2025-06-27 07:29:02 +02:00

Clippy fixes.

This commit is contained in:
Cameron Dershem
2019-06-22 09:18:08 -04:00
parent 339ac43814
commit 4f57ce2fdb
2 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ fn index(_req: HttpRequest) -> RegisterResult {
// <- variant B
Box::new(ok(HttpResponse::Ok()
.content_type("text/html")
.body(format!("Hello!")))),
.body("Hello!".to_string()))),
)
}
}