Skip to content

Commit

Permalink
Add missing @moduledoc to modules
Browse files Browse the repository at this point in the history
  • Loading branch information
san650 committed Dec 20, 2017
1 parent 5070857 commit 8ff65ac
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/fixtures/components/button/view.ex
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
defmodule MyApp.Components.Button do
@moduledoc """
Dummy button component
"""
use PhoenixComponents.Component
end
3 changes: 3 additions & 0 deletions test/fixtures/components/compound/view.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
defmodule MyApp.Components.Compound do
@moduledoc """
Dummy compound component
"""
use PhoenixComponents.Component

import_components [:button, :jumbotron]
Expand Down
3 changes: 3 additions & 0 deletions test/fixtures/components/jumbotron/view.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
defmodule MyApp.Components.Jumbotron do
@moduledoc """
Dummy jumbotron component
"""
use PhoenixComponents.Component

def class(color) do
Expand Down

0 comments on commit 8ff65ac

Please sign in to comment.