Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 'edoc-warning-gh63'
  • Loading branch information
etrepum committed Dec 17, 2011
2 parents 81e9674 + 29937a6 commit b7f3693
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 9 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
@@ -1,5 +1,6 @@
Version 2.3.1 released XXXX-XX-XX

* Fix edoc warnings (#63)
* Fix mochiweb_html handling of invalid charref sequences (unescaped &) (#69).
* Add a manual garbage collection between requests to avoid worst case behavior
on keep-alive sockets.
Expand Down
3 changes: 0 additions & 3 deletions src/mochihex.erl
Expand Up @@ -8,9 +8,6 @@

-export([to_hex/1, to_bin/1, to_int/1, dehex/1, hexdigit/1]).

%% @type iolist() = [char() | binary() | iolist()]
%% @type iodata() = iolist() | binary()

%% @spec to_hex(integer | iolist()) -> string()
%% @doc Convert an iolist to a hexadecimal string.
to_hex(0) ->
Expand Down
2 changes: 0 additions & 2 deletions src/mochijson.erl
Expand Up @@ -15,8 +15,6 @@
-define(INC_COL(S), S#decoder{column=1+S#decoder.column}).
-define(INC_LINE(S), S#decoder{column=1, line=1+S#decoder.line}).

%% @type iolist() = [char() | binary() | iolist()]
%% @type iodata() = iolist() | binary()
%% @type json_string() = atom | string() | binary()
%% @type json_number() = integer() | float()
%% @type json_array() = {array, [json_term()]}
Expand Down
2 changes: 0 additions & 2 deletions src/mochijson2.erl
Expand Up @@ -64,8 +64,6 @@
-define(IS_WHITESPACE(C),
(C =:= $\s orelse C =:= $\t orelse C =:= $\r orelse C =:= $\n)).

%% @type iolist() = [char() | binary() | iolist()]
%% @type iodata() = iolist() | binary()
%% @type json_string() = atom | binary()
%% @type json_number() = integer() | float()
%% @type json_array() = [json_term()]
Expand Down
2 changes: 0 additions & 2 deletions src/mochiweb_request.erl
Expand Up @@ -32,8 +32,6 @@
-define(SAVE_COOKIE, mochiweb_request_cookie).
-define(SAVE_FORCE_CLOSE, mochiweb_request_force_close).

%% @type iolist() = [iolist() | binary() | char()].
%% @type iodata() = binary() | iolist().
%% @type key() = atom() | string() | binary()
%% @type value() = atom() | string() | binary() | integer()
%% @type headers(). A mochiweb_headers structure.
Expand Down

0 comments on commit b7f3693

Please sign in to comment.