diff options
author | Michael Cahill <michael.cahill@wiredtiger.com> | 2014-03-26 15:35:45 +1100 |
---|---|---|
committer | Alex Gorrod <alexg@wiredtiger.com> | 2014-03-28 16:16:33 +1100 |
commit | c05ae226e8fe473b8bbee13bf73797830ab3fde2 (patch) | |
tree | 10fc5156a4252de2d15b55f228129844958ebc4b | |
parent | 08a9394ddf98b2ffcbc5cc96af879d14b07d63b9 (diff) | |
download | mongo-c05ae226e8fe473b8bbee13bf73797830ab3fde2.tar.gz |
Fix a comment: finish the sentence.
-rw-r--r-- | src/block/block_ext.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/block/block_ext.c b/src/block/block_ext.c index 8eb1546908f..c0d1dacc5f5 100644 --- a/src/block/block_ext.c +++ b/src/block/block_ext.c @@ -888,7 +888,8 @@ __wt_block_extlist_merge(WT_SESSION_IMPL *session, WT_EXTLIST *a, WT_EXTLIST *b) /* * Sometimes the list we are merging is much bigger than the other: if * so, swap the lists around to reduce the amount of work we need to do - * during the merge. The size lists have to match as well, so + * during the merge. The size lists have to match as well, so this is + * only possible if both lists are tracking sizes, or neither are. */ if (a->track_size == b->track_size && a->entries > b->entries) { tmp = *a; |