Skip to content

Commit

Permalink
Unified and fixed OTP skeleton comments
Browse files Browse the repository at this point in the history
  • Loading branch information
dyslaw-pesail committed Oct 22, 2014
1 parent b3ac11c commit 4eb81a1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion plugin/erlang_skels/common_test
@@ -1,6 +1,6 @@
-module($MODULENAME).

%% API
%% Common Test callbacks
-export([all/0,
suite/0,
groups/0,
Expand Down
4 changes: 2 additions & 2 deletions plugin/erlang_skels/gen_event
Expand Up @@ -2,7 +2,7 @@

-behaviour(gen_event).

%% API
%% API functions
-export([start_link/0,
add_handler/2]).

Expand All @@ -17,7 +17,7 @@
-record(state, {}).

%%%===================================================================
%%% gen_event callbacks
%%% API functions
%%%===================================================================

%%--------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions plugin/erlang_skels/gen_fsm
Expand Up @@ -2,7 +2,7 @@

-behaviour(gen_fsm).

%% API
%% API functions
-export([start_link/0]).

%% gen_fsm callbacks
Expand All @@ -18,7 +18,7 @@
-record(state, {}).

%%%===================================================================
%%% API
%%% API functions
%%%===================================================================

%%--------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions plugin/erlang_skels/gen_server
Expand Up @@ -2,7 +2,7 @@

-behaviour(gen_server).

%% API
%% API functions
-export([start_link/0]).

%% gen_server callbacks
Expand All @@ -16,7 +16,7 @@
-record(state, {}).

%%%===================================================================
%%% API
%%% API functions
%%%===================================================================

%%--------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion plugin/erlang_skels/supervisor
Expand Up @@ -2,7 +2,7 @@

-behaviour(supervisor).

%% API
%% API functions
-export([start_link/0]).

%% Supervisor callbacks
Expand Down

0 comments on commit 4eb81a1

Please sign in to comment.