Skip to content

Commit

Permalink
note
Browse files Browse the repository at this point in the history
  • Loading branch information
justcoding121 committed Nov 9, 2018
1 parent cb094ab commit 0e0ea19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Advanced.Algorithms/DataStructures/Tree/B+Tree.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class BpTree<T> : IEnumerable<T> where T : IComparable
internal BpTreeNode<T> Root;

/// <summary>
/// Keep a reference of Bottom Left Node
/// Keep a reference of Bottom Left/Right Node
/// for fast ascending/descending enumeration using Next pointer.
/// See IEnumerable & IEnumerableDesc implementation at bottom.
/// </summary>
Expand Down

0 comments on commit 0e0ea19

Please sign in to comment.