From: Ian Jackson Date: Wed, 19 Mar 2025 19:32:02 +0000 (+0000) Subject: config: Fix some misspellings X-Git-Tag: debian/1.3.1~10^2~3 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=96e99df7db42dd1123f22513c67b841683dbce55;p=hippotat.git config: Fix some misspellings Signed-off-by: Ian Jackson --- diff --git a/src/config.rs b/src/config.rs index 4ca1dc9..8765b31 100644 --- a/src/config.rs +++ b/src/config.rs @@ -615,7 +615,7 @@ struct ResolveContext<'c> { trait Parseable: Sized { fn parse(s: Option<&str>) -> Result; - /// Used for lookups with [`ResolveContest::ordinary`] etc. + /// Used for lookups with [`ResolveContext::ordinary`] etc. /// /// Fails, if this setting ought to have been specified. /// The caller will add a key name to the error. @@ -626,9 +626,9 @@ trait Parseable: Sized { /// Placeholder (infalliable) /// /// Used (sometimes) for lookups with - /// [`ResolveContest::client`], - /// [`server`](`ResolveContest::server`) and - /// [`computed`](`ResolveContest::server`). + /// [`ResolveContext::client`], + /// [`server`](`ResolveContext::server`) and + /// [`computed`](`ResolveContext::server`). /// /// Ie, when the value need not be specified because /// it may not be applicable, or could be computed.