summaryrefslogtreecommitdiffstats
path: root/core/project_settings.cpp
diff options
context:
space:
mode:
authorluz.paz <luzpaz@users.noreply.github.com>2018-09-12 21:38:39 -0400
committerluz.paz <luzpaz@users.noreply.github.com>2018-09-12 21:39:17 -0400
commit08bde5b2dea65ef3f80af5de4f4caf0e76982b64 (patch)
treef4b5e8b60aa121d9ced1274b43a6ffac240f6790 /core/project_settings.cpp
parent0d04fb76e1d4543d04d6e41244c06f35bfecb07c (diff)
downloadredot-engine-08bde5b2dea65ef3f80af5de4f4caf0e76982b64.tar.gz
Misc. typos
Found via `codespell -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po"`
Diffstat (limited to 'core/project_settings.cpp')
-rw-r--r--core/project_settings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/project_settings.cpp b/core/project_settings.cpp
index 890789ec6f..8d403ca816 100644
--- a/core/project_settings.cpp
+++ b/core/project_settings.cpp
@@ -59,7 +59,7 @@ String ProjectSettings::get_resource_path() const {
String ProjectSettings::localize_path(const String &p_path) const {
if (resource_path == "")
- return p_path; //not initialied yet
+ return p_path; //not initialized yet
if (p_path.begins_with("res://") || p_path.begins_with("user://") ||
(p_path.is_abs_path() && !p_path.begins_with(resource_path)))