diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-09-02 16:37:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-02 16:37:40 +0200 |
commit | 2b8d379824354227efd55b23152b6165cf6338cf (patch) | |
tree | c61ea80ca6adf2a2494ffdebb0a73dd56d4e5cbc /scene/resources | |
parent | b4efb832a749730b924f63be073cfe80c9afc334 (diff) | |
parent | 459f526119da43efae52307a6165a8ccd5cb2288 (diff) |
Merge pull request #10890 from Noshyaar/an-pr
Fix typos 'a' and 'an'
[ci skip]
Diffstat (limited to 'scene/resources')
-rw-r--r-- | scene/resources/packed_scene.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/resources/packed_scene.cpp b/scene/resources/packed_scene.cpp index 19fab5d587..c525ca600a 100644 --- a/scene/resources/packed_scene.cpp +++ b/scene/resources/packed_scene.cpp @@ -145,7 +145,7 @@ Node *SceneState::instance(GenEditState p_edit_state) const { node = parent->_get_child_by_name(snames[n.name]); #ifdef DEBUG_ENABLED if (!node) { - WARN_PRINT(String("Node '" + String(ret_nodes[0]->get_path_to(parent)) + "/" + String(snames[n.name]) + "' was modified from inside a instance, but it has vanished.").ascii().get_data()); + WARN_PRINT(String("Node '" + String(ret_nodes[0]->get_path_to(parent)) + "/" + String(snames[n.name]) + "' was modified from inside an instance, but it has vanished.").ascii().get_data()); } #endif } |