aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/cow_date.erl12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/cow_date.erl b/src/cow_date.erl
index 8226855..803448b 100644
--- a/src/cow_date.erl
+++ b/src/cow_date.erl
@@ -201,6 +201,12 @@ horse_http_date_asctime() ->
).
-endif.
+%% @doc Return the date formatted according to RFC1123.
+
+-spec rfc1123(calendar:datetime()) -> binary().
+rfc1123(DateTime) ->
+ rfc7231(DateTime).
+
%% @doc Return the date formatted according to RFC2109.
-spec rfc2109(calendar:datetime()) -> binary().
@@ -238,12 +244,6 @@ horse_rfc2109_12340506_070809() ->
).
-endif.
-%% @doc Return the date formatted according to RFC1123.
-
--spec rfc1123(calendar:datetime()) -> binary().
-rfc1123(DateTime) ->
- rfc7231(DateTime).
-
%% @doc Return the date formatted according to RFC7231.
-spec rfc7231(calendar:datetime()) -> binary().