mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Fixes small typos and grammar correction
This commit is contained in:
@@ -126,7 +126,7 @@ bool Callable::operator==(const Callable &p_callable) const {
|
||||
if (custom_a == custom_b) {
|
||||
if (custom_a) {
|
||||
if (custom == p_callable.custom) {
|
||||
return true; //same pointer, dont even compare
|
||||
return true; //same pointer, don't even compare
|
||||
}
|
||||
|
||||
CallableCustom::CompareEqualFunc eq_a = custom->get_compare_equal_func();
|
||||
@@ -155,7 +155,7 @@ bool Callable::operator<(const Callable &p_callable) const {
|
||||
if (custom_a == custom_b) {
|
||||
if (custom_a) {
|
||||
if (custom == p_callable.custom) {
|
||||
return false; //same pointer, dont even compare
|
||||
return false; //same pointer, don't even compare
|
||||
}
|
||||
|
||||
CallableCustom::CompareLessFunc less_a = custom->get_compare_less_func();
|
||||
|
||||
Reference in New Issue
Block a user