Merge pull request #2300 from nspcc-dev/fix-stripprefix-comment

interop/storage: fix outdated RemovePrefix comment
This commit is contained in:
Roman Khimov 2021-12-06 18:16:48 +03:00 committed by GitHub
commit 06fc450789
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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