Skip to content

Commit

Permalink
Fix pluralization in doc comment. (#725)
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys authored Aug 30, 2024
1 parent 3e058ae commit 983f8a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pipeline/query_pipeline/generators.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use crate::{
/// Generates collider AABBs based on the union of their current AABB and the AABB predicted
/// from the velocity and forces of their parent rigid-body.
///
/// The main purpose of this struct is to be passed as a parameters to
/// The main purpose of this struct is to be passed as a parameter to
/// [`QueryPipeline::update_with_generator`] to update the [`QueryPipeline`].
///
/// The predicted position is calculated as
Expand Down Expand Up @@ -56,7 +56,7 @@ impl<'a> QbvhDataGenerator<ColliderHandle> for SweptAabbWithPredictedPosition<'a
/// Generates collider AABBs based on the union of their AABB at their current [`Collider::position`]
/// and the AABB predicted from their parent’s [`RigidBody::next_position`].
///
/// The main purpose of this struct is to be passed as a parameters to
/// The main purpose of this struct is to be passed as a parameter to
/// [`QueryPipeline::update_with_generator`] to update the [`QueryPipeline`].
///
/// The predicted position is calculated as
Expand Down Expand Up @@ -89,7 +89,7 @@ impl<'a> QbvhDataGenerator<ColliderHandle> for SweptAabbWithNextPosition<'a> {

/// Generates collider AABBs based on the AABB at their current [`Collider::position`].
///
/// The main purpose of this struct is to be passed as a parameters to
/// The main purpose of this struct is to be passed as a parameter to
/// [`QueryPipeline::update_with_generator`] to update the [`QueryPipeline`].
pub struct CurrentAabb<'a> {
/// The colliders of your simulation.
Expand Down

0 comments on commit 983f8a3

Please sign in to comment.