run cargo fmt

This commit is contained in:
Folkert 2022-12-23 17:19:54 +01:00
parent f932bb66a0
commit 439befcc38
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C

View file

@ -290,10 +290,12 @@ fn to_expr_report<'a>(
])
.indent(4),
alloc.reflow("And to define a function:"),
alloc.vcat(vec![
alloc.text("increment : I64 -> I64"),
alloc.text("increment = \\n -> n + 1"),
]).indent(4)
alloc
.vcat(vec![
alloc.text("increment : I64 -> I64"),
alloc.text("increment = \\n -> n + 1"),
])
.indent(4),
])]
}
},