diff options
Diffstat (limited to 'internal/app/state/state.go')
| -rw-r--r-- | internal/app/state/state.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/app/state/state.go b/internal/app/state/state.go index 6a3a82db..59fbc8c7 100644 --- a/internal/app/state/state.go +++ b/internal/app/state/state.go @@ -19,9 +19,9 @@ type Store interface { // Cursor provided to f becomes invalid as soon as f returns. Do(identity int, f func(c Cursor)) (ok bool, err error) - // List queries the store and returns a list of aids known to the store. - // Note that some or all returned aids might not have any active apps. - List() (aids []int, err error) + // List queries the store and returns a list of identities known to the store. + // Note that some or all returned identities might not have any active apps. + List() (identities []int, err error) // Close releases any resources held by Store. Close() error |
