forked from TrueCloudLab/neoneo-go
Merge pull request #2300 from nspcc-dev/fix-stripprefix-comment
interop/storage: fix outdated RemovePrefix comment
This commit is contained in:
commit
06fc450789
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ const (
|
|||
None FindFlags = 0
|
||||
// KeysOnly is used for iterating over keys.
|
||||
KeysOnly FindFlags = 1 << 0
|
||||
// RemovePrefix is used for stripping 1-byte prefix from keys.
|
||||
// RemovePrefix is used for stripping prefix (passed to Find) from keys.
|
||||
RemovePrefix FindFlags = 1 << 1
|
||||
// ValuesOnly is used for iterating over values.
|
||||
ValuesOnly FindFlags = 1 << 2
|
||||
|
|
Loading…
Reference in a new issue