trait Parseable: Sized {
fn parse(s: Option<&str>) -> Result<Self, AE>;
- /// 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.
/// 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.