small comment change.
authorScott Gasch <[email protected]>
Mon, 8 May 2023 04:06:07 +0000 (21:06 -0700)
committerScott Gasch <[email protected]>
Mon, 8 May 2023 04:06:07 +0000 (21:06 -0700)
src/pyutils/collectionz/bst.py

index 3d0bccc098cfd32c05dfde418ec01f317e8b3385..3a0fae9b9b11fb84b077fd6c91ee50f7703aa813 100644 (file)
@@ -30,7 +30,8 @@ class Node:
         (https://docs.python.org/3/library/functools.html#functools.total_ordering)
 
         Args:
-            value: a reference to the value of the node.
+            value: a reference to the value of the node.  Must be comparable
+            to other values.
 
         """
         self.left: Optional[Node] = None