Skip to content

Commit

Permalink
remove blank spaces in some lines
Browse files Browse the repository at this point in the history
  • Loading branch information
manuel-rubio committed Feb 3, 2016
1 parent a4265c5 commit 54fcc1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ephp_include.erl
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ load_once(Ref, Name) ->
case find_file(Name) of
{error, enoent} ->
{error, enoent};
{ok, Content} ->
{ok, Content} ->
Value = ephp_parser:parse(Content),
erlang:put(Ref, ?DICT:store(Name, Value, Inc)),
Value
Expand All @@ -49,7 +49,7 @@ load(Ref, Name) ->
case find_file(Name) of
{error, enoent} ->
{error, enoent};
{ok, Content} ->
{ok, Content} ->
Value = ephp_parser:parse(Content),
erlang:put(Ref, ?DICT:store(Name, Value, Inc)),
Value
Expand Down

0 comments on commit 54fcc1a

Please sign in to comment.