Skip to content

Commit

Permalink
Fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
gsexton committed Jan 18, 2025
1 parent b0eba02 commit 21c4248
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gpio/group.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type GPIOValue uint64
// Implementations that don't implement specific interface methods should
// return GroupFeatureNotImplemented as the error to allow clients to
// generically check for the condition.
var GroupFeatureNotImplemented = errors.New("gpio group feature not implemented")
var ErrGroupFeatureNotImplemented = errors.New("gpio group feature not implemented")

// Group is an interface that an IO device can implement to manipulate multiple
// IO Pins at one time. Performing GPIO Operations in this manner can dramatically
Expand Down

0 comments on commit 21c4248

Please sign in to comment.