From 6a95f664ebe5be7e3fbcaa3e18c02f0855728652 Mon Sep 17 00:00:00 2001 From: Lucas Baumann <41015240+luca3s@users.noreply.github.com> Date: Tue, 10 Sep 2024 17:32:59 +0200 Subject: [PATCH] Correct Documentation --- 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 ///