Skip to content

Commit e792d7c

Browse files
authored
Fix typo in README, close #14
[skip ci]
1 parent bfaf53e commit e792d7c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Pass `escript: true` to the `use ExCLI.DSL` and set the module as `escript` `:ma
9797
```elixir
9898
# lib/my_escript_cli.ex
9999
defmodule MyEscriptCLI do
100-
use ExCLI, escript: true
100+
use ExCLI.DSL, escript: true
101101
end
102102

103103
# mix.exs
@@ -116,7 +116,7 @@ Pass `mix_task: TASK_NAME` to the `use ExCLI.DSL`.
116116
```elixir
117117
# lib/my_cli_task.ex
118118
defmodule MyCLITask do
119-
use ExCLI, mix_task: :great_task
119+
use ExCLI.DSL, mix_task: :great_task
120120
end
121121
```
122122

0 commit comments

Comments
 (0)