Skip to content

Commit

Permalink
Remove warnings from examples (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulo-ferraz-oliveira authored Jul 12, 2023
1 parent 7c7bafa commit 60a9e6d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/rebar3_ex_doc.erl
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,10 @@ to_ex_doc_format(ExDocOpts) ->
[V | Opts];
({logo, _} = V, Opts) ->
[V | Opts];
({before_closing_body_tag, _} = V, Opts) ->
[V | Opts];
({before_closing_head_tag, _} = V, Opts) ->
[V | Opts];
({skip_undefined_reference_warnings_on = K, Skips0}, Opts) ->
Skips = [to_binary(Skip) || Skip <- Skips0],
[{K, Skips} | Opts];
Expand Down

0 comments on commit 60a9e6d

Please sign in to comment.