From d9b58c4ef5c8df91eda3afd9fbddd3ab729b8e2a Mon Sep 17 00:00:00 2001 From: henrykotze Date: Wed, 29 Nov 2023 14:34:17 +0200 Subject: [PATCH] Fix typos --- include/sdf/Sensor.hh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/include/sdf/Sensor.hh b/include/sdf/Sensor.hh index 37a98cfc3..a36d64697 100644 --- a/include/sdf/Sensor.hh +++ b/include/sdf/Sensor.hh @@ -345,17 +345,17 @@ namespace sdf /// \param[in] _air The air pressure sensor. public: void SetAirSpeedSensor(const AirSpeed &_air); - /// \brief Get the air speed sensor, or nullptr if this sensor type - /// is not an AirSpeed sensor. - /// \return Pointer to the AirSpeed sensor, or nullptr if this - /// Sensor is not a AirSpeed sensor. + /// \brief Get the air flow sensor, or nullptr if this sensor type + /// is not an AirFlow sensor. + /// \return Pointer to the AirFlow sensor, or nullptr if this + /// Sensor is not a AirFlow sensor. /// \sa SensorType Type() const public: const AirFlow *AirFlowSensor() const; - /// \brief Get a mutable air speed sensor, or nullptr if this sensor type - /// is not an AirSpeed sensor. - /// \return Pointer to the AirSpeed sensor, or nullptr if this - /// Sensor is not a AirSpeed sensor. + /// \brief Get a mutable air flow sensor, or nullptr if this sensor type + /// is not an AirFlow sensor. + /// \return Pointer to the AirFlow sensor, or nullptr if this + /// Sensor is not a AirFlow sensor. /// \sa SensorType Type() const public: AirFlow *AirFlowSensor();