From 1af67bb219f86248ec85343b5f47c10c82a90485 Mon Sep 17 00:00:00 2001 From: onyx-and-iris <75868496+onyx-and-iris@users.noreply.github.com> Date: Tue, 12 Jul 2022 17:33:50 +0100 Subject: [PATCH] Update strip.go fix typo in docstrings --- strip.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/strip.go b/strip.go index 58ecfe0..d2072fa 100644 --- a/strip.go +++ b/strip.go @@ -302,7 +302,7 @@ func newStripLevels(i int, k *kind) levels { return levels{iRemote{fmt.Sprintf("strip[%d]", i), i}, k, init, os, "strip"} } -// PreFader returns the level valuess for this strip, PREFADER mode +// PreFader returns the level values for this strip, PREFADER mode func (l *levels) PreFader() []float32 { _levelCache.stripMode = 0 var levels []float32 @@ -312,7 +312,7 @@ func (l *levels) PreFader() []float32 { return levels } -// PreFader returns the level valuess for this strip, POSTFADER mode +// PostFader returns the level values for this strip, POSTFADER mode func (l *levels) PostFader() []float32 { _levelCache.stripMode = 1 var levels []float32 @@ -322,7 +322,7 @@ func (l *levels) PostFader() []float32 { return levels } -// PreFader returns the level valuess for this strip, POSTMUTE mode +// PostMute returns the level values for this strip, POSTMUTE mode func (l *levels) PostMute() []float32 { _levelCache.stripMode = 2 var levels []float32