From 820c6206667327b3f099f34db45399d340b06fd6 Mon Sep 17 00:00:00 2001 From: Takafumi Arakaki Date: Mon, 11 Nov 2019 08:31:03 -0800 Subject: [PATCH] Fix compat docstring --- base/operators.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/operators.jl b/base/operators.jl index d0c972e90f240..049fdf3410273 100644 --- a/base/operators.jl +++ b/base/operators.jl @@ -834,7 +834,7 @@ Function composition also works in prefix form: `∘(f, g)` is the same as `f The prefix form supports composition of multiple functions: `∘(f, g, h) = f ∘ g ∘ h` and splatting `∘(fs...)` for composing an iterable collection of functions. -!!!compat "Julia 1.4" +!!! compat "Julia 1.4" Multiple function composition requires at least Julia 1.4. # Examples