Skip to content

Commit 521608b

Browse files
committed
Fix mix module discovery
1 parent d0753e9 commit 521608b

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

lib/image/ocr.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ defmodule Image.OCR do
2626
## Trained-data
2727
2828
`Image.OCR` ships with English (`eng`) trained-data. To install additional
29-
languages, see `Mix.Tasks.Image.OCR.Tessdata.Add`. The trained-data location
29+
languages, see `Mix.Tasks.Image.Ocr.Tessdata.Add`. The trained-data location
3030
is resolved by `Image.OCR.Tessdata.datapath/1`.
3131
3232
"""

lib/image/ocr/tessdata.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ defmodule Image.OCR.Tessdata do
1616
1717
4. The vendored fallback at `priv/tessdata/` inside the `:image_ocr` package.
1818
19-
See `Mix.Tasks.Image.OCR.Tessdata.Add` and friends for managing the contents
19+
See `Mix.Tasks.Image.Ocr.Tessdata.Add` and friends for managing the contents
2020
of a configured directory.
2121
2222
"""

lib/mix/tasks/image.ocr.tessdata.add.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
defmodule Mix.Tasks.Image.OCR.Tessdata.Add do
1+
defmodule Mix.Tasks.Image.Ocr.Tessdata.Add do
22
@shortdoc "Download a Tesseract trained-data file for one or more languages"
33

44
@moduledoc """

lib/mix/tasks/image.ocr.tessdata.list.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
defmodule Mix.Tasks.Image.OCR.Tessdata.List do
1+
defmodule Mix.Tasks.Image.Ocr.Tessdata.List do
22
@shortdoc "List installed Tesseract trained-data files"
33

44
@moduledoc """

lib/mix/tasks/image.ocr.tessdata.remove.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
defmodule Mix.Tasks.Image.OCR.Tessdata.Remove do
1+
defmodule Mix.Tasks.Image.Ocr.Tessdata.Remove do
22
@shortdoc "Remove an installed Tesseract trained-data file"
33

44
@moduledoc """

lib/mix/tasks/image.ocr.tessdata.update.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
defmodule Mix.Tasks.Image.OCR.Tessdata.Update do
1+
defmodule Mix.Tasks.Image.Ocr.Tessdata.Update do
22
@shortdoc "Refresh every installed Tesseract trained-data file"
33

44
@moduledoc """

0 commit comments

Comments
 (0)