Skip to content

Commit

Permalink
missing word
Browse files Browse the repository at this point in the history
  • Loading branch information
jordens committed Nov 14, 2022
1 parent 848f121 commit 20b834b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/option.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ use core::ops::{Deref, DerefMut};
/// namespaces will not be exposed for it.
///
/// The first form is the [`miniconf::Option`](Option) type which optionally exposes its
/// interior `Miniconf` value as a sub-tree. A [`miniconf::Option`](Option) should usually be
/// with `#[miniconf(defer)]`.
/// interior `Miniconf` value as a sub-tree. An [`miniconf::Option`](Option) should usually be
/// `#[miniconf(defer)]`.
///
/// Miniconf also allows for the normal usage of Rust [`core::option::Option`] types. In this case,
/// the `Option` can be used to atomically access the content within. If marked with `#[miniconf(defer)]`
Expand All @@ -27,7 +27,7 @@ use core::ops::{Deref, DerefMut};
///
/// # Construction
///
/// A `miniconf::Option` can be constructed using [`From<core::option::Option>`]/[`Into<miniconf::Option>`]
/// An `miniconf::Option` can be constructed using [`From<core::option::Option>`]/[`Into<miniconf::Option>`]
/// and the contained value can be accessed through [`Deref`]/[`DerefMut`].
#[derive(
Clone,
Expand Down

0 comments on commit 20b834b

Please sign in to comment.