state: add rustdoc links

This commit is contained in:
Henry de Valence 2020-09-09 17:51:08 -07:00
parent 2ac8b5b9d4
commit 98d5351206
2 changed files with 2 additions and 2 deletions

View File

@ -27,5 +27,5 @@ pub use request::Request;
pub use response::Response;
pub use service::init;
/// A boxed `std::error::Error`.
/// A boxed [`std::error::Error`].
pub type BoxError = Box<dyn std::error::Error + Send + Sync + 'static>;

View File

@ -44,7 +44,7 @@ impl Service<Request> for StateService {
}
}
/// Initialize a state service from the provided `config`.
/// Initialize a state service from the provided [`Config`].
///
/// Each `network` has its own separate sled database.
///