From 983f8a39012431b5c678494c5d77306be16063b0 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Fri, 30 Aug 2024 16:53:46 +0700 Subject: Fix pluralization in doc comment. (#725) --- src/pipeline/query_pipeline/generators.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/pipeline/query_pipeline/generators.rs b/src/pipeline/query_pipeline/generators.rs index 1145b4a..5e5146b 100644 --- a/src/pipeline/query_pipeline/generators.rs +++ b/src/pipeline/query_pipeline/generators.rs @@ -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 @@ -56,7 +56,7 @@ impl<'a> QbvhDataGenerator 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 @@ -89,7 +89,7 @@ impl<'a> QbvhDataGenerator 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. -- cgit