Skip to content

Commit 8eb504f

Browse files
authored
Merge pull request #77 from jayvdb/with-with
Fix docstring
2 parents 3836eed + 118b0c6 commit 8eb504f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -332,9 +332,9 @@ where
332332
})
333333
}
334334

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

340340
impl<'a> Prefixed<'a> {
@@ -400,9 +400,9 @@ where
400400
Prefixed(prefix.into())
401401
}
402402

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

408408
impl KeepNames {

0 commit comments

Comments
 (0)