summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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