gleam
gleam copied to clipboard
Weird gleam format for constructor docs
Given:
pub type Example {
Example(
/// Hello
/// More
a: String, /// There
b: String)
}
Will be formatted as:
pub type Example {
Example(/// Hello
/// More
a: String, /// There
b: String)
}
For now these two ways work:
pub type Example {
Example(
/// Hello
a: String,
/// There
b: String,
)
}
pub type Example {
Example(
/// There
b: String,
/// Hello
/// More
a: String,
)
}
Thank you