Fix typo: rename "bounary" to "boundary" in block.cc (#7328)

Summary:
Fix typo in comment for SeekForGetImpl().
Rename "bounary" to "boundary"

Pull Request resolved: https://github.com/facebook/rocksdb/pull/7328

Reviewed By: riversand963

Differential Revision: D23439748

Pulled By: zhichao-cao

fbshipit-source-id: 83a34c417c71a3210ce54a090d76c4d5571313f3
This commit is contained in:
Bingyi Sun 2020-09-02 20:45:32 -07:00 committed by Facebook GitHub Bot
parent 177f8bd063
commit 61d5a132c9

View File

@ -291,7 +291,7 @@ bool DataBlockIter::SeekForGetImpl(const Slice& target) {
// exist in the next block. Consider this example: // exist in the next block. Consider this example:
// //
// Block N: [aab@100, ... , app@120] // Block N: [aab@100, ... , app@120]
// bounary key: axy@50 (we make minimal assumption about a boundary key) // boundary key: axy@50 (we make minimal assumption about a boundary key)
// Block N+1: [axy@10, ... ] // Block N+1: [axy@10, ... ]
// //
// If seek_key = axy@60, the search will starts from Block N. // If seek_key = axy@60, the search will starts from Block N.