Преглед на файлове

Merge pull request #15898 from yurchor/patch-1

Fix minor typo: it's -> its
Rémi Verschelde преди 7 години
родител
ревизия
00387cbe1b
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      scene/2d/collision_object_2d.cpp

+ 1 - 1
scene/2d/collision_object_2d.cpp

@@ -336,7 +336,7 @@ String CollisionObject2D::get_configuration_warning() const {
 		if (warning == String()) {
 			warning += "\n";
 		}
-		warning += TTR("This node has no children shapes, so it can't interact with the space.\nConsider adding CollisionShape2D or CollisionPolygon2D children nodes to define it's shape.");
+		warning += TTR("This node has no children shapes, so it can't interact with the space.\nConsider adding CollisionShape2D or CollisionPolygon2D children nodes to define its shape.");
 	}
 
 	return warning;