From a5e75219f0bb9602178314a00eb9e0f9c22bcac6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Mon, 27 Aug 2012 12:16:07 +0200 Subject: Have only one -export and -export_type per line This should make easier spotting additions and removals in commits. --- src/cowboy_clock.erl | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) (limited to 'src/cowboy_clock.erl') diff --git a/src/cowboy_clock.erl b/src/cowboy_clock.erl index 3193b35..d8d220e 100644 --- a/src/cowboy_clock.erl +++ b/src/cowboy_clock.erl @@ -21,9 +21,19 @@ -module(cowboy_clock). -behaviour(gen_server). --export([start_link/0, stop/0, rfc1123/0, rfc2109/1]). %% API. --export([init/1, handle_call/3, handle_cast/2, - handle_info/2, terminate/2, code_change/3]). %% gen_server. +%% API. +-export([start_link/0]). +-export([stop/0]). +-export([rfc1123/0]). +-export([rfc2109/1]). + +%% gen_server. +-export([init/1]). +-export([handle_call/3]). +-export([handle_cast/2]). +-export([handle_info/2]). +-export([terminate/2]). +-export([code_change/3]). -record(state, { universaltime = undefined :: undefined | calendar:datetime(), -- cgit v1.2.3