mirror of
https://github.com/actix/actix-web.git
synced 2025-01-20 14:08:07 +00:00
Fix typo in request_data.rs (#1774)
This commit is contained in:
parent
4bfd5c2781
commit
e5b86d189c
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ use crate::{dev::Payload, FromRequest, HttpRequest};
|
|||
pub struct ReqData<T: Clone + 'static>(T);
|
||||
|
||||
impl<T: Clone + 'static> ReqData<T> {
|
||||
/// Consumes the `ReqData`, returning it's wrapped data.
|
||||
/// Consumes the `ReqData`, returning its wrapped data.
|
||||
pub fn into_inner(self) -> T {
|
||||
self.0
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue