Fix broken link to IntoValue.

This commit is contained in:
Sergio Benitez 2017-02-03 17:15:29 -08:00
parent 266c62fb22
commit 391628dea9

View File

@ -204,9 +204,9 @@ impl ConfigBuilder {
/// Adds an extra configuration parameter with `name` and `value` to the
/// configuration being built. The value can be any type that implements
/// [IntoValue](/config/trait.IntoValue.html) including `&str`, `String`,
/// `Vec<V: IntoValue>`, `HashMap<S: Into<String>, V: IntoValue>`, and all
/// integer and float types.
/// [IntoValue](/rocket/config/trait.IntoValue.html) including `&str`,
/// `String`, `Vec<V: IntoValue>`, `HashMap<S: Into<String>, V: IntoValue>`,
/// and all integer and float types.
///
/// # Example
///