diff options
Diffstat (limited to 'core/string/string_builder.cpp')
-rw-r--r-- | core/string/string_builder.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/core/string/string_builder.cpp b/core/string/string_builder.cpp index 4f74a2e42d..5edd1dc1f5 100644 --- a/core/string/string_builder.cpp +++ b/core/string/string_builder.cpp @@ -2,9 +2,11 @@ /* string_builder.cpp */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ @@ -70,7 +72,7 @@ String StringBuilder::as_string() const { for (int i = 0; i < appended_strings.size(); i++) { if (appended_strings[i] == -1) { - // Godot string + // Redot string const String &s = strings[godot_string_elem]; memcpy(buffer + current_position, s.ptr(), s.length() * sizeof(char32_t)); |