From 1cd41f672905236fe71a47b4fa2b9b6bf870dee5 Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Thu, 23 Sep 2021 09:48:37 -0500 Subject: [PATCH] docs: Fix documentation `using` Commit eda7a873691b ("Files generated by PkgTemplates") used lowercase module name `cowsay`. Commit 1dfe64246b78 ("Fix package name") changed the module to use capitalized module name (`Cowsay`) and the function to use the lowercase name (`cowsay`). Update docs generation to match those changes. Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com> --- docs/make.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/make.jl b/docs/make.jl index e2dd39a..5c58b95 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -1,4 +1,4 @@ -using cowsay +using Cowsay using Documenter DocMeta.setdocmeta!(Cowsay, :DocTestSetup, :(using Cowsay); recursive=true)