Skip to content

Commit 6047dfe

Browse files
author
Mohammed Sadique
committed
doc correct
1 parent f559172 commit 6047dfe

51 files changed

Lines changed: 63 additions & 14 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

lib/matplotex/blueprint.ex

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
defmodule Matplotex.Blueprint do
2+
@moduledoc false
23
@callback new(graph :: module(), params :: map()) :: any()
34
@callback set_content(graphset :: any()) :: any()
45
@callback add_elements(graphset :: any()) :: any()

lib/matplotex/blueprint/chord.ex

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
defmodule Matplotex.Blueprint.Chord do
2+
@moduledoc false
23
@true_by_default false
34
@false_by_default true
45
defmacro chord(opts \\ []) do

lib/matplotex/blueprint/frame.ex

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
defmodule Matplotex.Blueprint.Frame do
2+
@moduledoc false
23
alias Matplotex.Figure.Legend
34
@default_margin 0.05
45
@show_by_default true

lib/matplotex/element.ex

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
defmodule Matplotex.Element do
2+
@moduledoc false
23
@callback assemble(element :: struct()) :: String.t()
34
def assemble(%module{} = element), do: module.assemble(element)
45

lib/matplotex/element/circle.ex

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
defmodule Matplotex.Element.Circle do
2+
@moduledoc false
23
alias Matplotex.Element
34
use Element
45

lib/matplotex/element/label.ex

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
defmodule Matplotex.Element.Label do
2+
@moduledoc false
23
alias Matplotex.Element
34
use Element
45
@default_fill "black"

lib/matplotex/element/legend.ex

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
defmodule Matplotex.Element.Legend do
2+
@moduledoc false
23
alias Matplotex.Element.Label
34
alias Matplotex.Element
45

lib/matplotex/element/line.ex

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
defmodule Matplotex.Element.Line do
2+
@moduledoc false
23
alias Matplotex.Element
34
use Element
45

lib/matplotex/element/polygon.ex

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
defmodule Matplotex.Element.Polygon do
2+
@moduledoc false
23
alias Matplotex.Element
34
use Element
45
@default_fill "blue"

lib/matplotex/element/rad_legend.ex

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
defmodule Matplotex.Element.RadLegend do
2+
@moduledoc false
23
alias Matplotex.Element.Label
34
alias Matplotex.Element
45
alias Matplotex.Element.Rect

0 commit comments

Comments
 (0)