Skip to content
Permalink
Browse files

fix typo

  • Loading branch information
crocuis committed Nov 21, 2015
1 parent 1274978 commit d1a0606495d8d70314916c25984ac9694edb5b29
Showing with 1 addition and 1 deletion.
  1. +1 −1 Plugins/UnrealJS/Source/V8/Private/JavascriptContext_Private.cpp
@@ -869,7 +869,7 @@ class FJavascriptContextImplementation : public FJavascriptContext
if (!FPaths::DirectoryExists(base_path)) return false;

auto script_path = base_path / required_module;
if (!script_path.EndsWidth(TEXT(".js")))
if (!script_path.EndsWith(TEXT(".js")))
{
if (inner(script_path + TEXT(".js"))) return true;
if (inner(script_path / TEXT("index.js"))) return true;

0 comments on commit d1a0606

Please sign in to comment.
You can’t perform that action at this time.