Skip to content

Commit 8221713

Browse files
committed
&
1 parent 0e0ea19 commit 8221713

File tree

1 file changed

+1
-1
lines changed
  • src/Advanced.Algorithms/DataStructures/Tree

1 file changed

+1
-1
lines changed

src/Advanced.Algorithms/DataStructures/Tree/B+Tree.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public class BpTree<T> : IEnumerable<T> where T : IComparable
1616
/// <summary>
1717
/// Keep a reference of Bottom Left/Right Node
1818
/// for fast ascending/descending enumeration using Next pointer.
19-
/// See IEnumerable & IEnumerableDesc implementation at bottom.
19+
/// See IEnumerable and IEnumerableDesc implementation at bottom.
2020
/// </summary>
2121
internal BpTreeNode<T> BottomLeftNode;
2222
internal BpTreeNode<T> BottomRightNode;

0 commit comments

Comments
 (0)