We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e0ea19 commit 8221713Copy full SHA for 8221713
src/Advanced.Algorithms/DataStructures/Tree/B+Tree.cs
@@ -16,7 +16,7 @@ public class BpTree<T> : IEnumerable<T> where T : IComparable
16
/// <summary>
17
/// Keep a reference of Bottom Left/Right Node
18
/// for fast ascending/descending enumeration using Next pointer.
19
- /// See IEnumerable & IEnumerableDesc implementation at bottom.
+ /// See IEnumerable and IEnumerableDesc implementation at bottom.
20
/// </summary>
21
internal BpTreeNode<T> BottomLeftNode;
22
internal BpTreeNode<T> BottomRightNode;
0 commit comments