Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request rvirding#10 from yakaz/fix-function-name-in-comment
Update function name in comment before luerl:loadfile/1
  • Loading branch information
rvirding committed Sep 28, 2012
2 parents 2059f4b + 96d8c3d commit e26a7fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/luerl.erl
Expand Up @@ -86,7 +86,7 @@ load(Chunk) when is_list(Chunk) ->
{ok,Ts,_} = luerl_scan:string(Chunk),
luerl_parse:chunk(Ts).

%% compilefile(Path) -> {ok,Form}.
%% loadfile(Path) -> {ok,Form}.
loadfile(Path) ->
{ok,Bin} = file:read_file(Path),
{ok,Ts,_} = luerl_scan:string(binary_to_list(Bin)),
Expand Down

0 comments on commit e26a7fb

Please sign in to comment.