Skip to content

Commit

Permalink
Revert misunderstand
Browse files Browse the repository at this point in the history
  • Loading branch information
gsexton committed Jan 21, 2025
1 parent 880918c commit ab96a60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gpio/group.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ type Group interface {
// If the device doesn't support write operations, implementations should
// return gpio.ErrGroupFeatureNotImplemented.
Out(value, mask GPIOValue) error
// In reads the pins within the group, and returns the value, ANDed with
// Read reads the pins within the group, and returns the value, ANDed with
// mask. If the device doesn't support read operations, implementations
// should return gpio.ErrGroupFeatureNotImplemented.
In(mask GPIOValue) (GPIOValue, error)
Read(mask GPIOValue) (GPIOValue, error)
// WaitForEdge blocks for a GPIO line change event to happen. If the does
// not implement gpio.PinIn, or doesn't support this capability,
// implementations should return gpio.ErrGroupFeatureNotImplemented.
Expand Down

0 comments on commit ab96a60

Please sign in to comment.