Skip to content

Commit

Permalink
Fix docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
jayvdb committed Jun 7, 2024
1 parent 3836eed commit 118b0c6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -332,9 +332,9 @@ where
})
}

/// A type which filters env vars with a prefix for use as serde field inputs
/// A type which filters env vars with a prefix for use as serde field inputs.
///
/// These types are created with with the [prefixed](fn.prefixed.html) module function
/// These types are created with the [prefixed](fn.prefixed.html) module function.
pub struct Prefixed<'a>(Cow<'a, str>);

impl<'a> Prefixed<'a> {
Expand Down Expand Up @@ -400,9 +400,9 @@ where
Prefixed(prefix.into())
}

/// A type which keeps the serde field names
/// A type which keeps the serde field names.
///
/// These types are created with with the [keep_names](fn.keep_names.html) module function
/// These types are created with the [keep_names](fn.keep_names.html) module function.
pub struct KeepNames;

impl KeepNames {
Expand Down

0 comments on commit 118b0c6

Please sign in to comment.