From f80f7c49e63ddbb1acb7dd365820c84e75ae1a30 Mon Sep 17 00:00:00 2001 From: Collin Guarino Date: Tue, 16 Feb 2016 00:29:26 -0500 Subject: Changed documentation header standard project wide to a less passive voice. --- scene.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scene.go') diff --git a/scene.go b/scene.go index 5cd7da8..8c55d23 100644 --- a/scene.go +++ b/scene.go @@ -30,7 +30,7 @@ type Scene struct { ID string `json:",omitempty"` } -// Bridge.GetScenes will get attributes for all scenes. +// Bridge.GetScenes gets the attributes for all scenes. func (bridge *Bridge) GetAllScenes() ([]Scene, error) { uri := fmt.Sprintf("/api/%s/scenes", bridge.Username) body, _, err := bridge.Get(uri) @@ -53,7 +53,7 @@ func (bridge *Bridge) GetAllScenes() ([]Scene, error) { return scenesList, nil } -// Bridge.GetScene will get the attributes for an individual scene. +// Bridge.GetScene gets the attributes for an individual scene. // This is used to optimize time when updating the state of the scene. // Note: The ID is not an index, it's a unique key generated for each scene. func (bridge *Bridge) GetScene(id string) (Scene, error) { -- cgit v1.2.3