Skip to content

Commit 8a79daa

Browse files
committed
policy: add missing comma in Semantic's Debug impl
Signed-off-by: Antoine Poinsot <darosior@protonmail.com>
1 parent a626815 commit 8a79daa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/policy/semantic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ impl<Pk: MiniscriptKey> fmt::Debug for Policy<Pk> {
235235
} else if k == 1 {
236236
write!(f, "or(")?;
237237
} else {
238-
write!(f, "thresh({}", k)?;
238+
write!(f, "thresh({},", k)?;
239239
}
240240
for (i, sub) in subs.into_iter().enumerate() {
241241
if i == 0 {

0 commit comments

Comments
 (0)