Skip to content

Commit

Permalink
Move docs module under parent folder
Browse files Browse the repository at this point in the history
  • Loading branch information
pnezis committed May 19, 2024
1 parent f6293a9 commit 1b7f0c9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cli_options/lib/cli_options.ex
Original file line number Diff line number Diff line change
Expand Up @@ -432,5 +432,5 @@ defmodule CliOptions do
* `:sort` - if set to `true` the options will be sorted alphabetically.
"""
@spec docs(schema :: keyword(), opts :: keyword()) :: String.t()
def docs(schema, opts \\ []), do: CliOptions.Schema.Docs.generate(schema, opts)
def docs(schema, opts \\ []), do: CliOptions.Docs.generate(schema, opts)
end
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
defmodule CliOptions.Schema.Docs do
defmodule CliOptions.Docs do
@moduledoc false

@doc false
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
defmodule CliOptions.Schema.DocsTest do
defmodule CliOptions.DocsTest do
use ExUnit.Case

@test_schema [
Expand Down

0 comments on commit 1b7f0c9

Please sign in to comment.