Skip to content

Commit

Permalink
doc: fix example doc code spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
nixon-voxell committed Aug 14, 2024
1 parent b8cd72d commit 3852534
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@
//! use bevy_vello_graphics::{bevy_vello::prelude::*, prelude::*};
//!
//! fn spawn_rect(mut commands: Commands) {
//! let rect = (
//! VelloRect::new(100.0, 200.0),
//! Fill::new().with_color(Color::WHITE),
//! Stroke::new(5.0).with_color(Color::BLACK),
//! );
//! let rect = (
//! VelloRect::new(100.0, 200.0),
//! Fill::new().with_color(Color::WHITE),
//! Stroke::new(5.0).with_color(Color::BLACK),
//! );
//!
//! commands.spawn(VelloSceneBundle::default()).insert(rect);
//! commands.spawn(VelloSceneBundle::default()).insert(rect);
//! }
//! ```

Expand Down

0 comments on commit 3852534

Please sign in to comment.