From a1e0fed3c709868009265fb90974558c75917b3f Mon Sep 17 00:00:00 2001 From: Lucas Baumann <41015240+luca3s@users.noreply.github.com> Date: Thu, 7 Nov 2024 04:44:55 +0100 Subject: [PATCH] Correct Documentation (#186) --- dasp_frame/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dasp_frame/src/lib.rs b/dasp_frame/src/lib.rs index 971bc4c..104a850 100644 --- a/dasp_frame/src/lib.rs +++ b/dasp_frame/src/lib.rs @@ -153,7 +153,7 @@ pub trait Frame: Copy + Clone + PartialEq { F: Frame, M: FnMut(Self::Sample, O::Sample) -> F::Sample; - /// Converts the frame type to the equivalent signal in its associated `Float`ing point format. + /// Converts the frame type to the equivalent signal in its associated `Signed` format. /// /// # Example /// @@ -168,7 +168,7 @@ pub trait Frame: Copy + Clone + PartialEq { /// ``` fn to_signed_frame(self) -> Self::Signed; - /// Converts the frame type to the equivalent signal in its associated `Signed` format. + /// Converts the frame type to the equivalent signal in its associated `Float`ing point format. /// /// # Example ///