Skip to content

Commit e8d4883

Browse files
TimvdLippejdm
authored andcommitted
Fix display of policies
It was missing a space between multiple policies.
1 parent dc1fd32 commit e8d4883

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ impl Display for Policy {
8888
fn fmt(&self, f: &mut Formatter) -> Result<(), fmt::Error> {
8989
for (i, directive) in self.directive_set.iter().enumerate() {
9090
if i != 0 {
91-
write!(f, ";")?;
91+
write!(f, "; ")?;
9292
}
9393
<Directive as Display>::fmt(directive, f)?;
9494
}

0 commit comments

Comments
 (0)