diff options
author | Loïc Hoguin <[email protected]> | 2012-02-27 08:07:03 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2012-02-27 08:07:03 +0100 |
commit | d9212c21ddee1d38a575ab74ad470e43e9b883fc (patch) | |
tree | 6c8fb66aa63b8222427a32469f18ac419be9ffa4 /src/cowboy_http_protocol.erl | |
parent | ac1424fd6ab75f8a24ae58b8d227cf8fe5da8e4e (diff) | |
download | cowboy-d9212c21ddee1d38a575ab74ad470e43e9b883fc.tar.gz cowboy-d9212c21ddee1d38a575ab74ad470e43e9b883fc.tar.bz2 cowboy-d9212c21ddee1d38a575ab74ad470e43e9b883fc.zip |
Remove the redundant include/ from -include("http.hrl")
Diffstat (limited to 'src/cowboy_http_protocol.erl')
-rw-r--r-- | src/cowboy_http_protocol.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cowboy_http_protocol.erl b/src/cowboy_http_protocol.erl index d7ba508..71518fa 100644 --- a/src/cowboy_http_protocol.erl +++ b/src/cowboy_http_protocol.erl @@ -38,7 +38,7 @@ -export([start_link/4]). %% API. -export([init/4, parse_request/1, handler_loop/3]). %% FSM. --include("include/http.hrl"). +-include("http.hrl"). -include_lib("eunit/include/eunit.hrl"). -record(state, { |