summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--abnf_to_pest/src/lib.rs9
1 files changed, 6 insertions, 3 deletions
diff --git a/abnf_to_pest/src/lib.rs b/abnf_to_pest/src/lib.rs
index deddf54..627444a 100644
--- a/abnf_to_pest/src/lib.rs
+++ b/abnf_to_pest/src/lib.rs
@@ -42,9 +42,12 @@ impl Pretty for Node {
nodes.iter().map(|x| x.pretty()),
BoxDoc::space().append(BoxDoc::text("~ ")),
),
- Repetition(rep) => {
- rep.node().pretty().append(rep.repeat().pretty())
- }
+ Repetition(rep) => rep
+ .node()
+ .pretty()
+ // this repeat application is a temporary work-around for the clippy issue:
+ // https://github.com/rust-lang/rust-clippy/pull/5948
+ .append(abnf::types::Repetition::repeat(rep).pretty()),
Rulename(s) => BoxDoc::text(escape_rulename(s)),
Group(n) => BoxDoc::text("(")
.append(n.pretty().nest(4).group())