Skip to content

Commit

Permalink
PR feedback: Reorder sentence
Browse files Browse the repository at this point in the history
Co-authored-by: Noah Treuhaft <noah.treuhaft@gmail.com>
  • Loading branch information
philrz and nwt authored Nov 4, 2023
1 parent f76de1a commit a0d07f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/language/functions/map.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ map(v: array|set, f: function) -> array|set

The _map_ function applies function `f` to every element in array or set `v` and
returns an array or set of the results. Function `f` must be a function that takes
only one argument. A [user-defined function](../statements.md#func-statements) can be used for `f`.
only one argument. `f` may be a [user-defined function](../statements.md#func-statements).

### Examples

Expand Down

0 comments on commit a0d07f1

Please sign in to comment.