summaryrefslogtreecommitdiffstats
path: root/core/templates
diff options
context:
space:
mode:
authorTrashguy <trashguy@gmail.com>2024-10-11 12:21:42 -0400
committerSpartan322 <Megacake1234@gmail.com>2024-10-13 15:05:24 -0400
commit9901f655fb46bd345770ad5f4a1638c4051b1816 (patch)
treebb22b4881145f122568c8f2e51e912078ad1b4fc /core/templates
parent6699ae7897658e44efc3cfb2cba91c11a8f5aa6a (diff)
downloadredot-engine-9901f655fb46bd345770ad5f4a1638c4051b1816.tar.gz
Rebrand Godot 4.3 to Redot
Diffstat (limited to 'core/templates')
-rw-r--r--core/templates/hash_map.h2
-rw-r--r--core/templates/hash_set.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/core/templates/hash_map.h b/core/templates/hash_map.h
index a3e8c2c788..a3d46be323 100644
--- a/core/templates/hash_map.h
+++ b/core/templates/hash_map.h
@@ -245,7 +245,7 @@ public:
_FORCE_INLINE_ uint32_t get_capacity() const { return hash_table_size_primes[capacity_index]; }
_FORCE_INLINE_ uint32_t size() const { return num_elements; }
- /* Standard Godot Container API */
+ /* Standard Redot Container API */
bool is_empty() const {
return num_elements == 0;
diff --git a/core/templates/hash_set.h b/core/templates/hash_set.h
index 295b07e5e7..94293a309a 100644
--- a/core/templates/hash_set.h
+++ b/core/templates/hash_set.h
@@ -230,7 +230,7 @@ public:
_FORCE_INLINE_ uint32_t get_capacity() const { return hash_table_size_primes[capacity_index]; }
_FORCE_INLINE_ uint32_t size() const { return num_elements; }
- /* Standard Godot Container API */
+ /* Standard Redot Container API */
bool is_empty() const {
return num_elements == 0;