1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-07-01 16:55:08 +02:00

Fix read_body doc

This commit is contained in:
Yuki Okushi
2020-03-13 05:52:58 +09:00
parent 9f196fe5a5
commit d602a7e386

View File

@ -187,7 +187,7 @@ where
/// .to_request();
///
/// let resp = test::call_service(&mut app, req).await;
/// let result = test::read_body(resp);
/// let result = test::read_body(resp).await;
/// assert_eq!(result, Bytes::from_static(b"welcome!"));
/// }
/// ```