1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 21:39:26 +00:00

docs: fix Data doc

This commit is contained in:
Rob Ede 2023-09-12 04:45:36 +01:00
parent 215a52f565
commit a7983351be
No known key found for this signature in database
GPG key ID: 97C636207D3EF933
2 changed files with 8 additions and 10 deletions

View file

@ -1,12 +1,10 @@
version: 2 version: 2
updates: updates:
- package-ecosystem: "cargo" - package-ecosystem: cargo
directory: "/" directory: /
schedule: schedule:
interval: "monthly" interval: weekly
open-pull-requests-limit: 10 - package-ecosystem: github-actions
- package-ecosystem: "github-actions" directory: /
directory: "/"
schedule: schedule:
interval: "monthly" interval: daily
open-pull-requests-limit: 10

View file

@ -32,8 +32,8 @@ pub(crate) type FnDataFactory =
/// Since the Actix Web router layers application data, the returned object will reference the /// Since the Actix Web router layers application data, the returned object will reference the
/// "closest" instance of the type. For example, if an `App` stores a `u32`, a nested `Scope` /// "closest" instance of the type. For example, if an `App` stores a `u32`, a nested `Scope`
/// also stores a `u32`, and the delegated request handler falls within that `Scope`, then /// also stores a `u32`, and the delegated request handler falls within that `Scope`, then
/// extracting a `web::<Data<u32>>` for that handler will return the `Scope`'s instance. /// extracting a `web::Data<u32>` for that handler will return the `Scope`'s instance. However,
/// However, using the same router set up and a request that does not get captured by the `Scope`, /// using the same router set up and a request that does not get captured by the `Scope`,
/// `web::<Data<u32>>` would return the `App`'s instance. /// `web::<Data<u32>>` would return the `App`'s instance.
/// ///
/// If route data is not set for a handler, using `Data<T>` extractor would cause a `500 Internal /// If route data is not set for a handler, using `Data<T>` extractor would cause a `500 Internal