Skip to content

Commit ec1ed60

Browse files
committed
Add newline after one-line summary to prefix_separator fields
1 parent 4514beb commit ec1ed60

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/env.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ pub struct Environment {
2828
prefix: Option<String>,
2929

3030
/// Optional character sequence that separates the prefix from the rest of the key.
31+
///
3132
/// Defaults to [`separator`](Environment::separator()) if that is set, otherwise `_`.
3233
prefix_separator: Option<String>,
3334

@@ -128,6 +129,7 @@ impl Environment {
128129
}
129130

130131
/// Optional character sequence that separates the prefix from the rest of the key.
132+
///
131133
/// Defaults to [`separator`](Environment::separator()) if that is set, otherwise `_`.
132134
pub fn prefix_separator(mut self, s: &str) -> Self {
133135
self.prefix_separator = Some(s.into());

0 commit comments

Comments
 (0)