Skip to content

Commit

Permalink
Add modueldocs to types
Browse files Browse the repository at this point in the history
  • Loading branch information
fabriziosestito committed May 20, 2023
1 parent 5c1d5d8 commit 0723c6f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion lib/rhai/any.ex
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
defmodule Rhai.Any do
@moduledoc false
@moduledoc """
Rhai types
"""

@type t() ::
number() | boolean() | String.t() | nil | [t()] | %{String.t() => t()}
Expand Down
4 changes: 3 additions & 1 deletion lib/rhai/error.ex
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
defmodule Rhai.Error do
@moduledoc false
@moduledoc """
Rhai error types
"""

@type error ::
:system
Expand Down
4 changes: 3 additions & 1 deletion lib/rhai/package.ex
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
defmodule Rhai.Package do
@moduledoc false
@moduledoc """
Rhai package types
"""

@type t ::
:arithmetic
Expand Down

0 comments on commit 0723c6f

Please sign in to comment.