From e331b48243f32b3817c6f97240c6be0188b90c6a Mon Sep 17 00:00:00 2001 From: amv-dev Date: Thu, 19 Sep 2024 23:02:27 +0500 Subject: [PATCH] fix: rust nightly support --- src/methods/vwma.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/methods/vwma.rs b/src/methods/vwma.rs index f91ca6f..8d6b86c 100644 --- a/src/methods/vwma.rs +++ b/src/methods/vwma.rs @@ -6,7 +6,8 @@ use crate::helpers::Peekable; use serde::{Deserialize, Serialize}; /// [Volume Weighed Moving Average](https://en.wikipedia.org/wiki/Moving_average#Weighted_moving_average) of specified `length` -/// for timeseries of type ([`ValueType`], [`ValueType`]) which represents pair of values (`value`, `volume`) +/// +/// Used for timeseries of type ([`ValueType`], [`ValueType`]) which represents pair of values (`value`, `volume`) /// /// # Parameters ///