Fix links to configuration guide.

This commit is contained in:
Sergio Benitez 2018-05-13 23:33:42 -07:00
parent eda1fb5517
commit f1fd1f8645
3 changed files with 4 additions and 4 deletions

View File

@ -221,7 +221,7 @@ This release includes the following new features:
* [`Response::content_type()`] was added to easily retrieve the Content-Type
header of a response.
* Size limits on incoming data are [now
configurable](https://rocket.rs/guide/overview/#configuration).
configurable](https://rocket.rs/guide/configuration/#data-limits).
* [`Request::limits()`] was added to retrieve incoming data limits.
* Responders may dynamically adjust their response based on the incoming
request.

View File

@ -32,7 +32,7 @@ const DEFAULT_TEMPLATE_DIR: &'static str = "templates";
/// `template_dir` configuration parameter and defaults to `templates/`. The
/// path set in `template_dir` should be relative to the Rocket configuration
/// file. See the [configuration
/// chapter](https://rocket.rs/guide/overview/#configuration) of the guide for
/// chapter](https://rocket.rs/guide/configuration/#extras) of the guide for
/// more information on configuration.
///
/// Templates are discovered according to their extension. At present, this

View File

@ -86,8 +86,8 @@
//! Rocket and Rocket libraries are configured via the `Rocket.toml` file and/or
//! `ROCKET_{PARAM}` environment variables. For more information on how to
//! configure Rocket, see the [configuration
//! section](https://rocket.rs/guide/overview/#configuration) of the guide as
//! well as the [config](/rocket/config) module documentation.
//! section](https://rocket.rs/guide/configuration/) of the guide as well as the
//! [config](/rocket/config) module documentation.
//!
//! ## Testing
//!