From 89d7aca73ad177394b6d610df04d8136f4cb4a75 Mon Sep 17 00:00:00 2001 From: belliash Date: Wed, 15 Aug 2018 16:38:33 +0200 Subject: [PATCH] Correct typo --- engine/vfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/vfs.c b/engine/vfs.c index 1194437..5c90e6d 100644 --- a/engine/vfs.c +++ b/engine/vfs.c @@ -1428,7 +1428,7 @@ static int PH7_builtin_dirname(ph7_context *pCtx, int nArg, ph7_value **apArg) { /* Point to the target path */ zPath = ph7_value_to_string(apArg[0], &iLen); if(iLen < 1) { - /* Reuturn "." */ + /* Return "." */ ph7_result_string(pCtx, ".", sizeof(char)); return PH7_OK; }