Skip to content

Commit

Permalink
Reindent gen_server export list
Browse files Browse the repository at this point in the history
  • Loading branch information
erszcz committed Apr 1, 2014
1 parent 0d64ef6 commit fcce90d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions snippets/erlang.snippets
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,12 @@ snippet gen_server
]).

%% gen_server callbacks
-export([init/1, handle_call/3, handle_cast/2, handle_info/2,
terminate/2, code_change/3]).
-export([init/1,
handle_call/3,
handle_cast/2,
handle_info/2,
terminate/2,
code_change/3]).

-define(SERVER, ?MODULE).

Expand Down

0 comments on commit fcce90d

Please sign in to comment.