From a6ae6eb09575850b97e28a85f7080b58ff246574 Mon Sep 17 00:00:00 2001 From: Ryan Pavlik Date: Wed, 3 Nov 2021 17:23:51 -0500 Subject: [PATCH] a/math: Fix some it's vs its. --- src/xrt/auxiliary/math/m_filter_fifo.h | 4 ++-- src/xrt/auxiliary/math/m_predict.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/xrt/auxiliary/math/m_filter_fifo.h b/src/xrt/auxiliary/math/m_filter_fifo.h index fb20596d6..3992be4f0 100644 --- a/src/xrt/auxiliary/math/m_filter_fifo.h +++ b/src/xrt/auxiliary/math/m_filter_fifo.h @@ -27,7 +27,7 @@ void m_ff_vec3_f32_alloc(struct m_ff_vec3_f32 **ff_out, size_t num); /*! - * Frees the given filter fifo and all it's samples. + * Frees the given filter fifo and all its samples. */ void m_ff_vec3_f32_free(struct m_ff_vec3_f32 **ff_ptr); @@ -75,7 +75,7 @@ void m_ff_f64_alloc(struct m_ff_f64 **ff_out, size_t num); /*! - * Frees the given filter fifo and all it's samples. + * Frees the given filter fifo and all its samples. */ void m_ff_f64_free(struct m_ff_f64 **ff_ptr); diff --git a/src/xrt/auxiliary/math/m_predict.c b/src/xrt/auxiliary/math/m_predict.c index d2a2f05fa..3a84179d5 100644 --- a/src/xrt/auxiliary/math/m_predict.c +++ b/src/xrt/auxiliary/math/m_predict.c @@ -43,7 +43,7 @@ do_orientation(const struct xrt_space_relation *rel, accum.z += ang_vel_body_space.z; } - // We don't want the angular acceleration, it's way to noisy. + // We don't want the angular acceleration, it's way too noisy. #if 0 if (valid_angular_acceleration) { accum.x += delta_s / 2 * rel->angular_acceleration.x;