mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-24 00:21:08 +01:00
fix doc example
This commit is contained in:
parent
79818560b2
commit
30a36bed9d
@ -325,7 +325,7 @@ impl Default for FormConfig {
|
||||
/// fn main() {
|
||||
/// let app = App::new().resource(
|
||||
/// "/index.html", |r|
|
||||
/// r.method(http::Method::GET).with(index))
|
||||
/// r.method(http::Method::GET).with(index));
|
||||
/// }
|
||||
/// ```
|
||||
impl<S: 'static> FromRequest<S> for Bytes {
|
||||
@ -372,7 +372,7 @@ impl<S: 'static> FromRequest<S> for Bytes {
|
||||
/// r.method(http::Method::GET)
|
||||
/// .with(index) // <- register handler with extractor params
|
||||
/// .limit(4096); // <- limit size of the payload
|
||||
/// })
|
||||
/// });
|
||||
/// }
|
||||
/// ```
|
||||
impl<S: 'static> FromRequest<S> for String {
|
||||
|
Loading…
Reference in New Issue
Block a user