Skip to content

Commit

Permalink
Fix typo in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
kraftwer1 authored Oct 29, 2024
1 parent 3e3c814 commit 52b0253
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ fn setup(mut effects: ResMut<Assets<EffectAsset>>) {
// to be over the surface of a sphere of radius 2 units.
let init_pos = SetPositionSphereModifier {
center: module.lit(Vec3::ZERO),
radius: module.lit(0.05),
radius: module.lit(2.),
dimension: ShapeDimension::Surface,
};

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
//! // to be over the surface of a sphere of radius 2 units.
//! let init_pos = SetPositionSphereModifier {
//! center: module.lit(Vec3::ZERO),
//! radius: module.lit(0.05),
//! radius: module.lit(2.),
//! dimension: ShapeDimension::Surface,
//! };
//!
Expand Down

0 comments on commit 52b0253

Please sign in to comment.