Skip to content

Commit e4bb80e

Browse files
committed
Run 'cargo fmt'
1 parent 565b34f commit e4bb80e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lib.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,8 @@ impl LsColors {
279279
} else if file_type.is_dir() {
280280
let mode = crate::fs::mode(metadata);
281281

282-
if self.has_color_for(Indicator::StickyAndOtherWritable) && mode & 0o1002 == 0o1002 {
282+
if self.has_color_for(Indicator::StickyAndOtherWritable) && mode & 0o1002 == 0o1002
283+
{
283284
Indicator::StickyAndOtherWritable
284285
} else if self.has_color_for(Indicator::OtherWritable) && mode & 0o0002 != 0 {
285286
Indicator::OtherWritable

0 commit comments

Comments
 (0)