Merge branch 'rustdoc_fix_2022_07_26' into 'main'

Fix a rustdoc link in tor-netdir.

See merge request tpo/core/arti!647
This commit is contained in:
Nick Mathewson 2022-07-26 19:09:16 +00:00
commit fad017403b
1 changed files with 1 additions and 1 deletions

View File

@ -318,7 +318,7 @@ pub trait NetDirProvider: UpcastArcNetDirProvider + Send + Sync {
/// Return a reasonable netdir for general usage.
///
/// This is an alias for
/// [`netdir_with_timeliness`]`(`[`Timeliness::Timely`]`)`.
/// [`NetDirProvider::netdir`]`(`[`Timeliness::Timely`]`)`.
fn timely_netdir(&self) -> Result<Arc<NetDir>> {
self.netdir(Timeliness::Timely)
}