Skip to content

Commit d63bc9a

Browse files
Merge pull request #30 from BigThinkcode/doc_correct
Doc correct
2 parents ed9c3a3 + b7b23c3 commit d63bc9a

Some content is hidden

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

55 files changed

+72
-18
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,5 @@ matplotex-*.tar
2626
/tmp/
2727

2828
/.github
29-
/samples
29+
/samples
30+
/add_line.sh

README.md

Lines changed: 1 addition & 1 deletion

lib/matplotex.ex

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
defmodule Matplotex do
22
@moduledoc """
3-
# Matplotex
4-
53
A lightweight and efficient Elixir library designed for server-side SVG generation, ideal for data visualization in web applications. It integrates seamlessly with Phoenix LiveView and provides powerful tools for generating dynamic visualizations.
64
75
## Supported Graph Types

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

0 commit comments

Comments
 (0)