summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/biggie/store.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/storage/biggie/store.h')
-rw-r--r--src/mongo/db/storage/biggie/store.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mongo/db/storage/biggie/store.h b/src/mongo/db/storage/biggie/store.h
index 6c0c883f108..a09b5b49b63 100644
--- a/src/mongo/db/storage/biggie/store.h
+++ b/src/mongo/db/storage/biggie/store.h
@@ -153,10 +153,10 @@ public:
: _root(root), _current(current) {}
/**
- * This function traverses the tree to find the next left-most node with data. Modifies
- * '_current' to point to this node. It uses a pre-order traversal ('visit' the current
- * node itself then 'visit' the child subtrees from left to right).
- */
+ * This function traverses the tree to find the next left-most node with data. Modifies
+ * '_current' to point to this node. It uses a pre-order traversal ('visit' the current
+ * node itself then 'visit' the child subtrees from left to right).
+ */
void _findNext() {
// If 'current' is a nullptr there is no next node to go to.
if (_current == nullptr)