diff --git a/docs/Manifest.toml b/docs/Manifest.toml index 2a505e4c..e2563cbe 100644 --- a/docs/Manifest.toml +++ b/docs/Manifest.toml @@ -2,7 +2,7 @@ julia_version = "1.10.0" manifest_format = "2.0" -project_hash = "8da447ffae6dbb8bdb3c155c589c8b114eb9958a" +project_hash = "fe71b10f25269fd113a1c2614d69c2d2681eec8c" [[deps.ANSIColoredPrinters]] git-tree-sha1 = "574baf8110975760d391c710b6341da1afa48d8c" diff --git a/docs/Project.toml b/docs/Project.toml index 7ef18f0e..d7aca308 100644 --- a/docs/Project.toml +++ b/docs/Project.toml @@ -3,6 +3,7 @@ Accessors = "7d9f7c33-5ae7-4f3b-8dc6-eff91059b697" ArgCheck = "dce04be8-c92d-5529-be00-80e4d2c0e197" BangBang = "198e06fe-97b7-11e9-32a5-e1d131e6ad66" Compat = "34da2185-b29b-5c13-b0c7-acf172513d20" +CompositionsBase = "a33af91c-f02d-484b-be07-31d278c5ca2b" DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" DataTools = "96c8136d-373b-4a4f-9482-8552faa6eb26" Dates = "ade2ca70-3891-5945-98fb-dc099432e06a" diff --git a/docs/make.jl b/docs/make.jl index 189105c3..3f0292a8 100755 --- a/docs/make.jl +++ b/docs/make.jl @@ -24,6 +24,7 @@ import OnlineStats import Random using Documenter using Transducers +import CompositionsBase: ⨟ EXAMPLE_PAGES = [ "Tutorial: Missing values" => "tutorials/tutorial_missings.md", @@ -165,7 +166,7 @@ howto = filter(((_, path),) -> startswith(path, "howto/"), examples) @info "`makedocs` with" doctest makedocs(; - modules = [Transducers], + modules = [Transducers, CompositionsBase], pages = [ "Home" => "index.md", "Reference" => @@ -180,6 +181,7 @@ makedocs(; "Internals" => "explanation/internals.md", ], ], + checkdocs=:none, #repo = "https://github.com/JuliaFolds2/Transducers.jl/blob/{commit}{path}#L{line}", sitename = "Transducers.jl", authors = "Takafumi Arakaki", diff --git a/docs/src/reference/manual.md b/docs/src/reference/manual.md index 0d1a30db..d22e96cc 100644 --- a/docs/src/reference/manual.md +++ b/docs/src/reference/manual.md @@ -40,6 +40,7 @@ Transducers.append_unordered! ```@docs Transducers.Transducer +CompositionsBase.:⨟ Base.:∘ Base.adjoint ```