aboutsummaryrefslogtreecommitdiffstats
path: root/src/cowboy_clock.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2012-08-27 12:16:07 +0200
committerLoïc Hoguin <[email protected]>2012-08-27 12:16:07 +0200
commita5e75219f0bb9602178314a00eb9e0f9c22bcac6 (patch)
treed09cce41044ae6d6995a92b2a24126451925f0a6 /src/cowboy_clock.erl
parente4124de2c71564d37b3732ede0fe1542de1d6f99 (diff)
downloadcowboy-a5e75219f0bb9602178314a00eb9e0f9c22bcac6.tar.gz
cowboy-a5e75219f0bb9602178314a00eb9e0f9c22bcac6.tar.bz2
cowboy-a5e75219f0bb9602178314a00eb9e0f9c22bcac6.zip
Have only one -export and -export_type per line
This should make easier spotting additions and removals in commits.
Diffstat (limited to 'src/cowboy_clock.erl')
-rw-r--r--src/cowboy_clock.erl16
1 files changed, 13 insertions, 3 deletions
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(),