From 9382e90404f17e10ef9e9b6cd3eec7f6b9f64b5c Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Sun, 7 May 2023 21:06:07 -0700 Subject: [PATCH] small comment change. --- src/pyutils/collectionz/bst.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.46.0