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 11792a0 commit 8c1e28bCopy full SHA for 8c1e28b
Algorithms/DataStructures/AVLTree.fs
@@ -262,7 +262,7 @@ module AVLTree =
262
| None, None -> None
263
| None, Some rightChild -> Some rightChild
264
| Some leftChild, None -> Some leftChild
265
- | Some leftChild, Some rightChild ->
+ | Some _leftChild, Some rightChild ->
266
let rightNode, currentValue = deleteMinValueNode rightChild
267
let node = { node with Value = currentValue }
268
0 commit comments