Skip to content

Commit ba92262

Browse files
committed
cargo fmt
1 parent a4d13f9 commit ba92262

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

vm/src/obj/objrange.rs

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,10 @@ impl RangeType {
105105
};
106106

107107
match self.step.sign() {
108-
Sign::Plus => {
109-
RangeType {
110-
start,
111-
end: &self.start - 1,
112-
step: -&self.step,
113-
}
108+
Sign::Plus => RangeType {
109+
start,
110+
end: &self.start - 1,
111+
step: -&self.step,
114112
},
115113
Sign::Minus => RangeType {
116114
start,

0 commit comments

Comments
 (0)