From 05d09de90b2360ba8c81bfd3eaf097400c6351d3 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 10:49:35 -0500 Subject: [PATCH] spelling: and Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/applib/legacy2/ui/property_animation_legacy2.h | 2 +- src/fw/applib/ui/property_animation.h | 2 +- src/fw/services/normal/voice/voice.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/fw/applib/legacy2/ui/property_animation_legacy2.h b/src/fw/applib/legacy2/ui/property_animation_legacy2.h index 870422ff..3e6b5dcb 100644 --- a/src/fw/applib/legacy2/ui/property_animation_legacy2.h +++ b/src/fw/applib/legacy2/ui/property_animation_legacy2.h @@ -127,7 +127,7 @@ void property_animation_legacy2_init(struct PropertyAnimationLegacy2 *property_a const struct PropertyAnimationLegacy2Implementation *implementation, void *subject, void *from_value, void *to_value); -//! Creates a new PropertyAnimationLegacy2 on the heap and and initializes it with the specified +//! Creates a new PropertyAnimationLegacy2 on the heap and initializes it with the specified //! values. The same defaults are used as with \ref animation_create(). //! If the `from_value` or the `to_value` is `NULL`, the getter accessor will be called to get the //! current value of the property and be used instead. diff --git a/src/fw/applib/ui/property_animation.h b/src/fw/applib/ui/property_animation.h index 71d63f56..8d608753 100644 --- a/src/fw/applib/ui/property_animation.h +++ b/src/fw/applib/ui/property_animation.h @@ -534,7 +534,7 @@ bool property_animation_to(PropertyAnimation *property_animation, void *to, size // Implementing custom Property Animations // -//! Creates a new PropertyAnimation on the heap and and initializes it with the specified values. +//! Creates a new PropertyAnimation on the heap and initializes it with the specified values. //! The same defaults are used as with \ref animation_create(). //! If the `from_value` or the `to_value` is `NULL`, the getter accessor will be called to get the //! current value of the property and be used instead. diff --git a/src/fw/services/normal/voice/voice.c b/src/fw/services/normal/voice/voice.c index 8537783a..16909df8 100644 --- a/src/fw/services/normal/voice/voice.c +++ b/src/fw/services/normal/voice/voice.c @@ -308,7 +308,7 @@ VoiceSessionId voice_start_dictation(VoiceEndpointSessionType session_type) { return s_session_id; } -// Calling this will end the recording, disable the mic and and stop the audio transfer session. We +// Calling this will end the recording, disable the mic and stop the audio transfer session. We // expect voice_handle_dictation_result to be called next with a dictation response void voice_stop_dictation(VoiceSessionId session_id) { mutex_lock(s_lock);