diff options
| author | luz.paz | 2018-02-21 11:30:55 -0500 |
|---|---|---|
| committer | Rémi Verschelde | 2018-02-21 19:46:06 +0100 |
| commit | 612ab4bbc6f2396f4dcd68c3f142f7dfa2f5f0a5 (patch) | |
| tree | 74a9d00318eb6666ae65ae222d22f7d0352cc2ca /core/set.h | |
| parent | 6afaf83de39d29746f8852daadadc0d46483c7ef (diff) | |
| download | godot-612ab4bbc6f2396f4dcd68c3f142f7dfa2f5f0a5.tar.gz godot-612ab4bbc6f2396f4dcd68c3f142f7dfa2f5f0a5.tar.zst godot-612ab4bbc6f2396f4dcd68c3f142f7dfa2f5f0a5.zip | |
Diffstat (limited to 'core/set.h')
| -rw-r--r-- | core/set.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/set.h b/core/set.h index 4f17c953b..d79dd8164 100644 --- a/core/set.h +++ b/core/set.h @@ -185,7 +185,7 @@ private: if (node->right != _data._nil) { node = node->right; - while (node->left != _data._nil) { /* returns the minium of the right subtree of node */ + while (node->left != _data._nil) { /* returns the minimum of the right subtree of node */ node = node->left; } return node; @@ -207,7 +207,7 @@ private: if (node->left != _data._nil) { node = node->left; - while (node->right != _data._nil) { /* returns the minium of the left subtree of node */ + while (node->right != _data._nil) { /* returns the minimum of the left subtree of node */ node = node->right; } return node; |
