Skip to content

Commit

Permalink
chore: fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
andig committed Nov 30, 2023
1 parent a8618d4 commit bcfb420
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charger/embed.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ type embed struct {

var _ api.IconDescriber = (*embed)(nil)

// Icon implements the api.Vehicle interface
// Icon implements the api.IconDescriber interface
func (v *embed) Icon() string {
return v.Icon_
}
Expand Down
2 changes: 1 addition & 1 deletion vehicle/embed.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func (v *embed) OnIdentified() api.ActionConfig {

var _ api.IconDescriber = (*embed)(nil)

// Icon implements the api.Vehicle interface
// Icon implements the api.IconDescriber interface
func (v *embed) Icon() string {
return v.Icon_
}
Expand Down
2 changes: 1 addition & 1 deletion vehicle/wrapper/wrapper.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func (v *Wrapper) SetTitle(title string) {
v.title = fmt.Sprintf("%s (unavailable)", title)
}

// Icon implements the api.Vehicle interface
// Icon implements the api.IconDescriber interface
func (v *Wrapper) Icon() string {
return v.icon
}
Expand Down

0 comments on commit bcfb420

Please sign in to comment.