Skip to content

Commit

Permalink
Add @moduledoc false
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieuprog committed Mar 7, 2020
1 parent feddb36 commit 19f0412
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/http/http_client.ex
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
if Code.ensure_loaded?(Mint.HTTP) do
defmodule Tz.HTTP.HTTPClient do
@moduledoc false

alias Mint.HTTP
alias Tz.HTTP.HTTPResponse

Expand Down
2 changes: 2 additions & 0 deletions lib/http/http_response.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
defmodule Tz.HTTP.HTTPResponse do
@moduledoc false

defstruct status_code: nil, headers: nil, body: [], complete?: false

def parse([{:status, _, status_code} | mint_messages], %__MODULE__{} = http_response) do
Expand Down

0 comments on commit 19f0412

Please sign in to comment.