Skip to content

Commit

Permalink
v1.1.0, again!
Browse files Browse the repository at this point in the history
  • Loading branch information
lpil committed Jun 17, 2024
1 parent 3e72c88 commit ad67e3d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/gleam_package_interface_test.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ fn sorted_dict(
doc.concat([
doc.from_string(name <> ": "),
to_doc(value)
|> doc.nest(by: 2),
|> doc.nest(by: 2),
])
})
|> parenthesise("{", "}", _)
Expand Down Expand Up @@ -267,8 +267,8 @@ fn parenthesise(open: String, close: String, docs: List(Document)) -> Document {
doc.from_string(open),
doc.nest(doc.break("", ""), by: 2),
docs
|> doc.join(with: doc.break(", ", ","))
|> doc.nest(by: 2),
|> doc.join(with: doc.break(", ", ","))
|> doc.nest(by: 2),
doc.break("", ","),
doc.from_string(close),
]
Expand Down

0 comments on commit ad67e3d

Please sign in to comment.