mirror of
https://github.com/actix/actix-web.git
synced 2024-11-22 09:31:10 +00:00
docs: align App:app_data arg name
This commit is contained in:
parent
dd84bcb609
commit
5c18569b78
1 changed files with 2 additions and 2 deletions
|
@ -112,8 +112,8 @@ where
|
|||
/// })
|
||||
/// ```
|
||||
#[doc(alias = "manage")]
|
||||
pub fn app_data<U: 'static>(mut self, ext: U) -> Self {
|
||||
self.extensions.insert(ext);
|
||||
pub fn app_data<U: 'static>(mut self, data: U) -> Self {
|
||||
self.extensions.insert(data);
|
||||
self
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue