summaryrefslogtreecommitdiff
path: root/src/unexpected.rs
diff options
context:
space:
mode:
authorBotahamec <botahamec@outlook.com>2023-08-08 20:13:42 -0400
committerBotahamec <botahamec@outlook.com>2023-08-08 20:13:42 -0400
commit94c692e8690b8dff24de438e008ded5c66641d29 (patch)
tree218dde9467ad5a852e1e860b04de4be2f4dbffe9 /src/unexpected.rs
parent27211e047c123ab21089a9d75ca9594ef4e643a3 (diff)
Fix doc link
Diffstat (limited to 'src/unexpected.rs')
-rw-r--r--src/unexpected.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unexpected.rs b/src/unexpected.rs
index 6538b96..a79721b 100644
--- a/src/unexpected.rs
+++ b/src/unexpected.rs
@@ -93,7 +93,7 @@ impl RawUnexpected {
/// Create a new `RawUnexpected` that is simply empty.
///
/// This is used for converting an [`Option<T>`] to a
- /// [`Result<T, RawUnexpected`].
+ /// [`Result<T, RawUnexpected>`].
///
/// # Examples
///
@@ -113,7 +113,7 @@ impl RawUnexpected {
/// Get the original error.
///
- /// This will return `None` if `self` was created using
+ /// This will return [`None`] if `self` was created using
/// [`RawUnexpected::msg`].
///
/// # Examples