aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel Medina Ballesteros <maximetinu@gmail.com>2024-06-14 15:39:38 +0200
committerGitHub <noreply@github.com>2024-06-14 15:39:38 +0200
commit5c6d34aa09254574dffbd7c95f1ab01a99ec2e53 (patch)
treef3c8903ee68d429a76091b52635dc9744df6695e
parent05c39258840d95ac2cdcda1d94ac0062541b58f4 (diff)
downloadrapier-5c6d34aa09254574dffbd7c95f1ab01a99ec2e53.tar.gz
rapier-5c6d34aa09254574dffbd7c95f1ab01a99ec2e53.tar.bz2
rapier-5c6d34aa09254574dffbd7c95f1ab01a99ec2e53.zip
fix: capitalization typo in docs (#654)
-rw-r--r--src/pipeline/query_pipeline/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pipeline/query_pipeline/mod.rs b/src/pipeline/query_pipeline/mod.rs
index 6e536d0..cd8ae4c 100644
--- a/src/pipeline/query_pipeline/mod.rs
+++ b/src/pipeline/query_pipeline/mod.rs
@@ -599,7 +599,7 @@ impl QueryPipeline {
/// * `shape_vel` - The constant velocity of the shape to cast (i.e. the cast direction).
/// * `shape` - The shape to cast.
/// * `max_toi` - The maximum time-of-impact that can be reported by this cast. This effectively
- /// limits the distance traveled by the shape to `shapeVel.norm() * maxToi`.
+ /// limits the distance traveled by the shape to `shape_vel.norm() * maxToi`.
/// * `stop_at_penetration` - If set to `false`, the linear shape-cast won’t immediately stop if
/// the shape is penetrating another shape at its starting point **and** its trajectory is such
/// that it’s on a path to exit that penetration state.