Skip to content

Commit 4f77500

Browse files
committed
Update readme to exclude request state
1 parent 5e16019 commit 4f77500

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ async fn main() -> tide::Result<()> {
8181
Ok(())
8282
}
8383

84-
async fn order_shoes(mut req: Request<()>) -> tide::Result {
84+
async fn order_shoes(mut req: Request) -> tide::Result {
8585
let Animal { name, legs } = req.body_json().await?;
8686
Ok(format!("Hello, {}! I've put in an order for {} shoes", name, legs).into())
8787
}

0 commit comments

Comments
 (0)