From: Scott Gasch Date: Mon, 8 May 2023 04:06:07 +0000 (-0700) Subject: small comment change. X-Git-Url: https://wannabe.guru.org/gitweb/?a=commitdiff_plain;h=9382e90404f17e10ef9e9b6cd3eec7f6b9f64b5c;p=pyutils.git small comment change. --- diff --git a/src/pyutils/collectionz/bst.py b/src/pyutils/collectionz/bst.py index 3d0bccc..3a0fae9 100644 --- a/src/pyutils/collectionz/bst.py +++ b/src/pyutils/collectionz/bst.py @@ -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