mirror of https://github.com/rwf2/Rocket.git
Fix links to configuration guide.
This commit is contained in:
parent
3894e4e9fe
commit
a040ddd122
|
@ -221,7 +221,7 @@ This release includes the following new features:
|
||||||
* [`Response::content_type()`] was added to easily retrieve the Content-Type
|
* [`Response::content_type()`] was added to easily retrieve the Content-Type
|
||||||
header of a response.
|
header of a response.
|
||||||
* Size limits on incoming data are [now
|
* 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.
|
* [`Request::limits()`] was added to retrieve incoming data limits.
|
||||||
* Responders may dynamically adjust their response based on the incoming
|
* Responders may dynamically adjust their response based on the incoming
|
||||||
request.
|
request.
|
||||||
|
|
|
@ -35,7 +35,7 @@ const DEFAULT_TEMPLATE_DIR: &'static str = "templates";
|
||||||
/// `template_dir` configuration parameter and defaults to `templates/`. The
|
/// `template_dir` configuration parameter and defaults to `templates/`. The
|
||||||
/// path set in `template_dir` should be relative to the Rocket configuration
|
/// path set in `template_dir` should be relative to the Rocket configuration
|
||||||
/// file. See the [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.
|
/// more information on configuration.
|
||||||
///
|
///
|
||||||
/// Templates are discovered according to their extension. At present, this
|
/// Templates are discovered according to their extension. At present, this
|
||||||
|
|
|
@ -88,8 +88,8 @@
|
||||||
//! Rocket and Rocket libraries are configured via the `Rocket.toml` file and/or
|
//! Rocket and Rocket libraries are configured via the `Rocket.toml` file and/or
|
||||||
//! `ROCKET_{PARAM}` environment variables. For more information on how to
|
//! `ROCKET_{PARAM}` environment variables. For more information on how to
|
||||||
//! configure Rocket, see the [configuration
|
//! configure Rocket, see the [configuration
|
||||||
//! section](https://rocket.rs/guide/overview/#configuration) of the guide as
|
//! section](https://rocket.rs/guide/configuration/) of the guide as well as the
|
||||||
//! well as the [config](/rocket/config) module documentation.
|
//! [config](/rocket/config) module documentation.
|
||||||
//!
|
//!
|
||||||
//! ## Testing
|
//! ## Testing
|
||||||
//!
|
//!
|
||||||
|
|
Loading…
Reference in New Issue