Merge pull request #109791 from Talkashie/master

Typo cleanup pass
This commit is contained in:
Thaddeus Crews 2025-08-21 18:39:37 -05:00
commit b432e108d5
No known key found for this signature in database
GPG key ID: 8C6E5FEB5FC03CCC
19 changed files with 97 additions and 97 deletions

View file

@ -331,7 +331,7 @@ IP *IP::get_singleton() {
IP *(*IP::_create)() = nullptr;
IP *IP::create() {
ERR_FAIL_COND_V_MSG(singleton, nullptr, "IP singleton already exist.");
ERR_FAIL_COND_V_MSG(singleton, nullptr, "IP singleton already exists.");
ERR_FAIL_NULL_V(_create, nullptr);
return _create();
}