From 3c3e04593739875dca83c903f715801d29f15810 Mon Sep 17 00:00:00 2001 From: Will Charczuk Date: Mon, 18 Jul 2016 15:47:33 -0700 Subject: [PATCH] naming is important. --- bollinger_band_series.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bollinger_band_series.go b/bollinger_band_series.go index 5d64ccc..739c0ad 100644 --- a/bollinger_band_series.go +++ b/bollinger_band_series.go @@ -78,8 +78,8 @@ func (bbs *BollingerBandsSeries) GetBoundedValue(index int) (x, y1, y2 float64) return } -// GetLastBoundedValue returns the last bounded value for the series. -func (bbs *BollingerBandsSeries) GetLastBoundedValue() (x, y1, y2 float64) { +// GetBoundedLastValue returns the last bounded value for the series. +func (bbs *BollingerBandsSeries) GetBoundedLastValue() (x, y1, y2 float64) { if bbs.InnerSeries == nil { return }