Fix typo in `actix_web::web::Data::get_ref docstring` (#921)

This commit is contained in:
Joe Roberts 2019-06-18 02:27:23 +01:00 committed by Nikolay Kim
parent ad0e6f73b3
commit d7780d53c9
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ impl<T> Data<T> {
Data(Arc::new(state))
}
/// Get referecnce to inner app data.
/// Get reference to inner app data.
pub fn get_ref(&self) -> &T {
self.0.as_ref()
}