Skip to content

Commit 5a614ae

Browse files
Fix formatting
1 parent d52344e commit 5a614ae

File tree

1 file changed

+4
-1
lines changed
  • crates/bevy_render/src/render_phase

1 file changed

+4
-1
lines changed

crates/bevy_render/src/render_phase/mod.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,10 @@ impl<I: PhaseItem> RenderPhase<I> {
105105
let mut draw_functions = draw_functions.write();
106106
draw_functions.prepare(world);
107107

108-
let items = self.items.get(range).expect("`Range` provided to `render_range()` is out of bounds");
108+
let items = self
109+
.items
110+
.get(range)
111+
.expect("`Range` provided to `render_range()` is out of bounds");
109112
let mut index = 0;
110113
while index < items.len() {
111114
let item = &items[index];

0 commit comments

Comments
 (0)