We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc1fd32 commit e8d4883Copy full SHA for e8d4883
src/lib.rs
@@ -88,7 +88,7 @@ impl Display for Policy {
88
fn fmt(&self, f: &mut Formatter) -> Result<(), fmt::Error> {
89
for (i, directive) in self.directive_set.iter().enumerate() {
90
if i != 0 {
91
- write!(f, ";")?;
+ write!(f, "; ")?;
92
}
93
<Directive as Display>::fmt(directive, f)?;
94
0 commit comments