Skip to content

Commit b902d23

Browse files
authored
Remove deprecated funs from docs (#845)
1 parent c02f810 commit b902d23

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

lib/explorer/data_frame.ex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1622,7 +1622,7 @@ defmodule Explorer.DataFrame do
16221622
def lazy(df), do: Shared.apply_impl(df, :lazy)
16231623

16241624
@deprecated "Use lazy/1 instead"
1625-
@doc type: :deprecated
1625+
@doc false
16261626
def to_lazy(df), do: Shared.apply_impl(df, :lazy)
16271627

16281628
@doc """
@@ -3173,7 +3173,7 @@ defmodule Explorer.DataFrame do
31733173
end
31743174

31753175
@deprecated "Use sort_by/3 instead"
3176-
@doc type: :deprecated
3176+
@doc false
31773177
defmacro arrange(df, query, opts \\ []) do
31783178
quote do
31793179
Explorer.DataFrame.sort_by(unquote(df), unquote(query), unquote(opts))
@@ -3299,7 +3299,7 @@ defmodule Explorer.DataFrame do
32993299
end
33003300

33013301
@deprecated "Use sort_with/3 instead"
3302-
@doc type: :deprecated
3302+
@doc false
33033303
def arrange_with(df, fun, opts \\ []), do: sort_with(df, fun, opts)
33043304

33053305
@doc """

mix.exs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,7 @@ defmodule Explorer.MixProject do
9797
"Functions: Introspection": &(&1[:type] == :introspection),
9898
"Functions: IO": &(&1[:type] == :io),
9999
"Functions: Shape": &(&1[:type] == :shape),
100-
"Functions: Window": &(&1[:type] == :window),
101-
"Functions: Deprecated": &(&1[:type] == :deprecated)
100+
"Functions: Window": &(&1[:type] == :window)
102101
],
103102
extras: ["notebooks/exploring_explorer.livemd", "CHANGELOG.md"],
104103
skip_undefined_reference_warnings_on: ["CHANGELOG.md"]

0 commit comments

Comments
 (0)