From b8668ef59c396548ee7b16133edf5be54fe34dfd Mon Sep 17 00:00:00 2001 From: hexbabe Date: Wed, 13 Nov 2024 14:07:34 -0500 Subject: [PATCH] Clarify comment --- components/camera/videosource/webcam.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/camera/videosource/webcam.go b/components/camera/videosource/webcam.go index 67759a79d9e..dffcef3545b 100644 --- a/components/camera/videosource/webcam.go +++ b/components/camera/videosource/webcam.go @@ -60,7 +60,7 @@ func init() { } // getProperties is a helper func for webcam discovery that returns the Media properties of a specific driver. -// It is NOT serving the camera Properties proto API. +// It is NOT related to the GetProperties camera proto API. func getProperties(d driver.Driver) (_ []prop.Media, err error) { // Need to open driver to get properties if d.Status() == driver.StateClosed { @@ -162,7 +162,7 @@ func (c WebcamConfig) Validate(path string) ([]string, error) { return []string{}, nil } -// needsDriverReinit is a helper to check for config diffs and returns true if the driver needs to be reinitialized. +// needsDriverReinit is a helper to check for config diffs and returns true iff the driver needs to be reinitialized. func (c WebcamConfig) needsDriverReinit(other WebcamConfig) bool { return !(c.Format == other.Format && c.Path == other.Path &&