diff options
| -rw-r--r-- | askama/src/lib.rs | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/askama/src/lib.rs b/askama/src/lib.rs index 24ee6b3..b3f4eae 100644 --- a/askama/src/lib.rs +++ b/askama/src/lib.rs @@ -437,7 +437,7 @@  //! Enabling the `with-rocket` feature appends an implementation of Rocket's  //! `Responder` trait for each template type. This makes it easy to trivially  //! return a value of that type in a Rocket handler. See -//! [the example](https://github.com/djc/askama/blob/master/testing/tests/rocket.rs) +//! [the example](https://github.com/djc/askama/blob/master/askama_rocket/tests/basic.rs)  //! from the Askama test suite for more on how to integrate.  //!  //! In case a run-time error occurs during templating, a `500 Internal Server @@ -449,7 +449,7 @@  //! Enabling the `with-iron` feature appends an implementation of Iron's  //! `Modifier<Response>` trait for each template type. This makes it easy to  //! trivially return a value of that type in an Iron handler. See -//! [the example](https://github.com/djc/askama/blob/master/testing/tests/iron.rs) +//! [the example](https://github.com/djc/askama/blob/master/askama_iron/tests/basic.rs)  //! from the Askama test suite for more on how to integrate.  //!  //! Note that Askama's generated `Modifier<Response>` implementation currently @@ -461,7 +461,7 @@  //! Enabling the `with-actix-web` feature appends an implementation of Actix-web's  //! `Responder` trait for each template type. This makes it easy to trivially return  //! a value of that type in an Actix-web handler. See -//! [the example](https://github.com/djc/askama/blob/master/testing/tests/actix_web.rs) +//! [the example](https://github.com/djc/askama/blob/master/askama_actix/tests/basic.rs)  //! from the Askama test suite for more on how to integrate.  //!  //! ## Gotham integration @@ -469,7 +469,7 @@  //! Enabling the `with-gotham` feature appends an implementation of Gotham's  //! `IntoResponse` trait for each template type. This makes it easy to trivially  //! return a value of that type in a Gotham handler. See -//! [the example](https://github.com/djc/askama/blob/master/testing/tests/gotham.rs) +//! [the example](https://github.com/djc/askama/blob/master/askama_gotham/tests/basic.rs)  //! from the Askama test suite for more on how to integrate.  //!  //! In case of a run-time error occurring during templating, the response will be of the same @@ -480,7 +480,7 @@  //!  //! Enabling the `with-warp` feature appends an implementation of Warp's `Reply`  //! trait for each template type. This makes it simple to return a template from -//! a Warp filter. See [the example](https://github.com/djc/askama/blob/master/testing/tests/warp.rs) +//! a Warp filter. See [the example](https://github.com/djc/askama/blob/master/askama_warp/tests/warp.rs)  //! from the Askama test suite for more on how to integrate.  //!  //! ## The `json` filter | 
