diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-01-20 19:27:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-20 19:27:49 +0100 |
commit | 00387cbe1b05c6093baea76d6852af18842c0f65 (patch) | |
tree | ca34e8113247ca7c1db8d2cac10051cb7452d82a | |
parent | f5234e70be7dec4930c2d5a0e829ff480d044b1d (diff) | |
parent | 17614f79ea389f2428ce421f68fd13f0d2c898b8 (diff) |
Merge pull request #15898 from yurchor/patch-1
Fix minor typo: it's -> its
-rw-r--r-- | scene/2d/collision_object_2d.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/2d/collision_object_2d.cpp b/scene/2d/collision_object_2d.cpp index 89edbb6cc1..8350e7c48a 100644 --- a/scene/2d/collision_object_2d.cpp +++ b/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; |