aboutsummaryrefslogtreecommitdiff
path: root/src/counters
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2024-08-09 19:31:08 +0700
committerGitHub <noreply@github.com>2024-08-09 14:31:08 +0200
commited133e1ea9fca451ed8b06ea2c7d067990975bf6 (patch)
tree120a8361333b8a311d69fc957275c9ddc5add37f /src/counters
parent5542bc5dbd7c569c23c8147c295fd3301fd29cfd (diff)
downloadrapier-ed133e1ea9fca451ed8b06ea2c7d067990975bf6.tar.gz
rapier-ed133e1ea9fca451ed8b06ea2c7d067990975bf6.tar.bz2
rapier-ed133e1ea9fca451ed8b06ea2c7d067990975bf6.zip
Fix more typos. (#712)
These are ones not found by `typos` for various reasons.
Diffstat (limited to 'src/counters')
-rw-r--r--src/counters/collision_detection_counters.rs2
-rw-r--r--src/counters/mod.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/counters/collision_detection_counters.rs b/src/counters/collision_detection_counters.rs
index 90c5141..1d2d28f 100644
--- a/src/counters/collision_detection_counters.rs
+++ b/src/counters/collision_detection_counters.rs
@@ -22,7 +22,7 @@ impl CollisionDetectionCounters {
}
}
- /// Resets all the coounters and timers.
+ /// Resets all the counters and timers.
pub fn reset(&mut self) {
self.ncontact_pairs = 0;
self.broad_phase_time.reset();
diff --git a/src/counters/mod.rs b/src/counters/mod.rs
index 99a627a..188f078 100644
--- a/src/counters/mod.rs
+++ b/src/counters/mod.rs
@@ -23,7 +23,7 @@ pub struct Counters {
pub step_time: Timer,
/// Timer used for debugging.
pub custom: Timer,
- /// Counters of every satge of one time step.
+ /// Counters of every stage of one time step.
pub stages: StagesCounters,
/// Counters of the collision-detection stage.
pub cd: CollisionDetectionCounters,