diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-06-17 17:28:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-17 17:28:55 +0200 |
commit | 3b3ba7d179748d3b24fe457a67254db340ff8082 (patch) | |
tree | d186d34b0fff10d047a0d22fd8f83e38dc5e8837 /scene/gui | |
parent | 813c0d84740b1d1c8ccece3540e945d1e821561d (diff) | |
parent | 340c2c0584b9751b4671a24458e7c5244c4bf64d (diff) |
Merge pull request #29847 from yurchor/master
Fix minor typos
Diffstat (limited to 'scene/gui')
-rw-r--r-- | scene/gui/container.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/container.cpp b/scene/gui/container.cpp index 1f9bfb9936..c9cf5f8308 100644 --- a/scene/gui/container.cpp +++ b/scene/gui/container.cpp @@ -177,7 +177,7 @@ String Container::get_configuration_warning() const { if (warning != String()) { warning += "\n"; } - warning += TTR("Container by itself serves no purpose unless a script configures it's children placement behavior.\nIf you don't intend to add a script, then please use a plain 'Control' node instead."); + warning += TTR("Container by itself serves no purpose unless a script configures its children placement behavior.\nIf you don't intend to add a script, then please use a plain 'Control' node instead."); } return warning; } |