aboutsummaryrefslogtreecommitdiffstats
path: root/src/cowboy_bstr.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_bstr.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_bstr.erl')
-rw-r--r--src/cowboy_bstr.erl8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/cowboy_bstr.erl b/src/cowboy_bstr.erl
index 0cd8e4d..6e5b353 100644
--- a/src/cowboy_bstr.erl
+++ b/src/cowboy_bstr.erl
@@ -15,8 +15,12 @@
%% @doc Binary string manipulation.
-module(cowboy_bstr).
--export([to_lower/1]). %% Binary strings.
--export([char_to_lower/1, char_to_upper/1]). %% Characters.
+%% Binary strings.
+-export([to_lower/1]).
+
+%% Characters.
+-export([char_to_lower/1]).
+-export([char_to_upper/1]).
%% @doc Convert a binary string to lowercase.
-spec to_lower(binary()) -> binary().