Merge pull request #116543 from AR-DEV-1/various-typo-fixes-1

Fix various typos & UI paper cuts
This commit is contained in:
Thaddeus Crews 2026-02-24 09:29:11 -06:00
commit 4d92b0b8a5
No known key found for this signature in database
GPG key ID: 8C6E5FEB5FC03CCC
5 changed files with 7 additions and 7 deletions

View file

@ -351,7 +351,7 @@ bool operator==(const wchar_t *p_chr, const String &p_str) {
// wchar_t is 16-bit
return p_str == String::utf16((const char16_t *)p_chr);
#else
// wchar_t is 32-bi
// wchar_t is 32-bit
return p_str == (const char32_t *)p_chr;
#endif
}
@ -365,7 +365,7 @@ bool operator!=(const wchar_t *p_chr, const String &p_str) {
// wchar_t is 16-bit
return !(p_str == String::utf16((const char16_t *)p_chr));
#else
// wchar_t is 32-bi
// wchar_t is 32-bit
return !(p_str == String((const char32_t *)p_chr));
#endif
}