Skip to content

Commit 4ffeac1

Browse files
committed
Fmt
1 parent d044b30 commit 4ffeac1

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

parley/src/layout/mod.rs

+1-6
Original file line numberDiff line numberDiff line change
@@ -182,12 +182,7 @@ impl<B: Brush> Layout<B> {
182182
/// You must perform line breaking prior to aligning, through [`Layout::break_lines`] or
183183
/// [`Layout::break_all_lines`]. If `container_width` is not specified, the layout's
184184
/// [`Layout::width`] is used.
185-
pub fn align(
186-
&mut self,
187-
container_width: f32,
188-
alignment: Alignment,
189-
options: AlignmentOptions,
190-
) {
185+
pub fn align(&mut self, container_width: f32, alignment: Alignment, options: AlignmentOptions) {
191186
unjustify(&mut self.data);
192187
align(&mut self.data, container_width, alignment, options);
193188
}

0 commit comments

Comments
 (0)