summaryrefslogtreecommitdiff
path: root/src/block
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2015-04-13 14:30:27 -0400
committerKeith Bostic <keith@wiredtiger.com>2015-04-13 14:30:27 -0400
commitc4a54091594709ae9337234024f52b596d732a92 (patch)
tree550320b52aa4d1b5241cebc4333a973dd99f1366 /src/block
parentf519ec8ee74f971c12df7b0924fd9ba96bf091c2 (diff)
downloadmongo-c4a54091594709ae9337234024f52b596d732a92.tar.gz
Fix a comment typo.
Diffstat (limited to 'src/block')
-rw-r--r--src/block/block_write.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/block/block_write.c b/src/block/block_write.c
index af31d82423c..3845df7d9ba 100644
--- a/src/block/block_write.c
+++ b/src/block/block_write.c
@@ -48,9 +48,9 @@ __wt_block_extend(WT_SESSION_IMPL *session, WT_BLOCK *block,
/*
* The locking in this function is messy: the live system is locked when
* we're called, by definition, but that lock may have been acquired by
- * our our caller or our caller's caller. If it's our caller's lock and
- * we can unlock it before returning (either before extending the file
- * or afterward, depending on the call used), then release_lock is set.
+ * our caller or our caller's caller. If it's our caller's lock and we
+ * can unlock it before returning (either before extending the file or
+ * afterward, depending on the call used), then release_lock is set.
*
* If we unlock, but then find out we need a lock after all, re-acquire
* the lock (and set release_lock so our caller knows to release it).