Completed
Push — master ( 7164ce...f4198e )
by Siro Díaz
01:38
created
DataStructures/Trees/AVLTree.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
      * @param DataStructures\Trees\Nodes\AVLNode|null $left the left child node.
33 33
      * @param DataStructures\Trees\Nodes\AVLNode|null $right the right child node.
34 34
      *
35
-     * @return DataStructures\Trees\Nodes\AVLNode the new node created.
35
+     * @return AVLNode the new node created.
36 36
      */
37 37
     public function createNode($key, $data, $parent = null, $left = null, $right = null) {
38 38
         return new AVLNode($key, $data, $parent, $left, $right);
Please login to merge, or discard this patch.