Removes extra whitespace at EOL

This commit is contained in:
Jorge Diz Pico
2013-02-28 11:27:28 +01:00
parent d7d8f70463
commit f216d3ddf8
18 changed files with 107 additions and 108 deletions

View File

@@ -1,7 +1,7 @@
%%%-------------------------------------------------------------------
%%% File : ezic_app.erl
%%% Author : aj <aj@fattie>
%%% Description :
%%% Description :
%%%
%%% Created : 15 Nov 2010 by aj <aj@fattie>
%%%-------------------------------------------------------------------
@@ -19,7 +19,7 @@
%% Function: start(Type, StartArgs) -> {ok, Pid} |
%% {ok, Pid, State} |
%% {error, Reason}
%% Description: This function is called whenever an application
%% Description: This function is called whenever an application
%% is started using application:start/1,2, and should start the processes
%% of the application. If the application is structured according to the
%% OTP design principles as a supervision tree, this means starting the
@@ -27,7 +27,7 @@
%%--------------------------------------------------------------------
start(_Type, StartArgs) ->
case ezic_sup:start_link(StartArgs) of
{ok, Pid} ->
{ok, Pid} ->
{ok, Pid};
Error ->
Error
@@ -37,7 +37,7 @@ start(_Type, StartArgs) ->
%% Function: stop(State) -> void()
%% Description: This function is called whenever an application
%% has stopped. It is intended to be the opposite of Module:start/2 and
%% should do any necessary cleaning up. The return value is ignored.
%% should do any necessary cleaning up. The return value is ignored.
%%--------------------------------------------------------------------
stop(_State) ->
ok.