Code style fixes.

This commit is contained in:
Oleksii Trekhleb
2018-05-30 08:00:25 +03:00
parent 8d868ae582
commit fcc546347d
4 changed files with 39 additions and 9 deletions

View File

@@ -2,8 +2,8 @@ import Comparator from '../../utils/comparator/Comparator';
export default class BinaryTreeNode {
/**
* @param {*} value
* @param {BinaryTreeNode} parent
* @param {*} [value]
* @param {BinaryTreeNode} [parent]
*/
constructor(value = null, parent = null) {
this.left = null;