Skip to content

Commit

Permalink
docs: replace property isRed with a color
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenbunu authored and ns-58 committed Apr 8, 2024
1 parent da11d49 commit 97e0fcd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/main/kotlin/vertexes/RBVertex.kt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package main.vertexes
* @param V Type of values.
* @property key The key associated with this vertex.
* @property value The value associated with this vertex.
* @property isRed A boolean indicating whether this vertex is red.
* @property color The color of this vertex (red or black).
* @property parent The parent vertex of this vertex.
* @property leftSon The left child vertex of this vertex.
* @property rightSon The right child vertex of this vertex.
Expand All @@ -30,7 +30,7 @@ class RBVertex<K, V>(
* @param value The value associated with this vertex.
* @param leftSon The left child vertex of this vertex.
* @param rightSon The right child vertex of this vertex.
* @param isRed A boolean indicating whether this vertex is red.
* @param color The color of this vertex (red or black).
* @param parent The parent vertex of this vertex.
*/
constructor(
Expand Down

0 comments on commit 97e0fcd

Please sign in to comment.