summaryrefslogtreecommitdiff
path: root/drivers/unix
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 /drivers/unix
parent0d04fb76e1d4543d04d6e41244c06f35bfecb07c (diff)
Misc. typos
Found via `codespell -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po"`
Diffstat (limited to 'drivers/unix')
-rw-r--r--drivers/unix/dir_access_unix.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/unix/dir_access_unix.cpp b/drivers/unix/dir_access_unix.cpp
index 5a4be6df4f..036276ccfe 100644
--- a/drivers/unix/dir_access_unix.cpp
+++ b/drivers/unix/dir_access_unix.cpp
@@ -59,7 +59,7 @@ Error DirAccessUnix::list_dir_begin() {
//char real_current_dir_name[2048]; //is this enough?!
//getcwd(real_current_dir_name,2048);
- //chdir(curent_path.utf8().get_data());
+ //chdir(current_path.utf8().get_data());
dir_stream = opendir(current_dir.utf8().get_data());
//chdir(real_current_dir_name);
if (!dir_stream)