We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8adb39 commit 4d206c9Copy full SHA for 4d206c9
base/operators.jl
@@ -997,7 +997,7 @@ Represents the composition of two callable objects `outer::Outer` and `inner::In
997
```julia
998
ComposedFunction(outer, inner)(args...; kw...) === outer(inner(args...; kw...))
999
```
1000
-The preferred way to construct instance of `ComposedFunction` is to use the composition operator [`∘`](@ref):
+The preferred way to construct an instance of `ComposedFunction` is to use the composition operator [`∘`](@ref):
1001
```jldoctest
1002
julia> sin ∘ cos === ComposedFunction(sin, cos)
1003
true
0 commit comments