Skip to content
This repository was archived by the owner on Aug 6, 2023. It is now read-only.

Commit be1eabd

Browse files
committed
Whoops, rustfmt
1 parent 7ee065f commit be1eabd

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/text.rs

+4-5
Original file line numberDiff line numberDiff line change
@@ -172,11 +172,10 @@ impl<'a> Span<'a> {
172172
&'a self,
173173
base_style: Style,
174174
) -> impl Iterator<Item = StyledGrapheme<'a>> {
175-
UnicodeSegmentation::graphemes(self.content.as_ref(), true)
176-
.map(move |g| StyledGrapheme {
177-
symbol: g,
178-
style: base_style.patch(self.style),
179-
})
175+
UnicodeSegmentation::graphemes(self.content.as_ref(), true).map(move |g| StyledGrapheme {
176+
symbol: g,
177+
style: base_style.patch(self.style),
178+
})
180179
}
181180
}
182181

0 commit comments

Comments
 (0)