Skip to content

Commit a32071d

Browse files
brettcannonsimonbyrne
authored andcommitted
Simplify some grammar (#22348)
1 parent d3db312 commit a32071d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/src/manual/functions.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -206,10 +206,10 @@ julia> map(round, [1.2,3.5,1.7])
206206
2.0
207207
```
208208

209-
This is fine if a named function effecting the transform one wants already exists to pass as the
210-
first argument to [`map()`](@ref). Often, however, a ready-to-use, named function does not exist.
211-
In these situations, the anonymous function construct allows easy creation of a single-use function
212-
object without needing a name:
209+
This is fine if a named function effecting the transform already exists to pass as the first argument
210+
to [`map()`](@ref). Often, however, a ready-to-use, named function does not exist. In these
211+
situations, the anonymous function construct allows easy creation of a single-use function object
212+
without needing a name:
213213

214214
```jldoctest
215215
julia> map(x -> x^2 + 2x - 1, [1,3,-1])

0 commit comments

Comments
 (0)