From d80977dbaea3d0510c7c39b5592f62bb04728944 Mon Sep 17 00:00:00 2001 From: aler9 <46489434+aler9@users.noreply.github.com> Date: Thu, 23 Jun 2022 13:35:57 +0200 Subject: [PATCH] update docs --- track.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/track.go b/track.go index efcb4178..bc14f97a 100644 --- a/track.go +++ b/track.go @@ -15,10 +15,10 @@ type Track interface { // ClockRate returns the track clock rate. ClockRate() int - // GetControl returns the track control. + // GetControl returns the track control attribute. GetControl() string - // SetControl sets the track control. + // SetControl sets the track control attribute. SetControl(string) // MediaDescription returns the track media description in SDP format. @@ -106,12 +106,12 @@ type trackBase struct { control string } -// GetControl gets the track control. +// GetControl gets the track control attribute. func (t *trackBase) GetControl() string { return t.control } -// SetControl sets the track control. +// SetControl sets the track control attribute. func (t *trackBase) SetControl(c string) { t.control = c }