Browse Source

Remove some pointless comments

Loïc Hoguin 11 years ago
parent
commit
f7c5fe521e
1 changed files with 0 additions and 7 deletions
  1. 0 7
      src/cow_cookie.erl

+ 0 - 7
src/cow_cookie.erl

@@ -14,10 +14,7 @@
 
 -module(cow_cookie).
 
-%% Parse.
 -export([parse_cookie/1]).
-
-%% Build.
 -export([setcookie/3]).
 
 -type cookie_option() :: {max_age, non_neg_integer()}
@@ -26,8 +23,6 @@
 -type cookie_opts() :: [cookie_option()].
 -export_type([cookie_opts/0]).
 
-%% Parse.
-
 %% @doc Parse a cookie header string and return a list of key/values.
 
 -spec parse_cookie(binary()) -> [{binary(), binary()}] | {error, badarg}.
@@ -151,8 +146,6 @@ parse_cookie_test_() ->
 	[{V, fun() -> R = parse_cookie(V) end} || {V, R} <- Tests].
 -endif.
 
-%% Build.
-
 %% @doc Convert a cookie name, value and options to its iodata form.
 %% @end
 %%