Unaddressed comment in previous diff. Change only in code comments.

This commit is contained in:
sdong 2015-01-30 16:07:35 -08:00
parent 5917de0bae
commit db9ed5fdb4

View File

@ -44,7 +44,9 @@ class SliceTransform {
// they are using. This function is to help users can determine: // they are using. This function is to help users can determine:
// if they want to iterate all keys prefixing `prefix`, whetherit is // if they want to iterate all keys prefixing `prefix`, whetherit is
// safe to use prefix bloom filter and seek to key `prefix`. // safe to use prefix bloom filter and seek to key `prefix`.
// Only returning false indicates it is correct to do that. // If this function returns true, this means a user can Seek() to a prefix
// using the bloom filter. Otherwise, user needs to skip the bloom filter
// by setting ReadOptions.total_order_seek = true.
// //
// Here is an example: Suppose we implement a slice transform that returns // Here is an example: Suppose we implement a slice transform that returns
// the first part of the string after spliting it using deimiter ",": // the first part of the string after spliting it using deimiter ",":