Skip to content

Commit 97bafe8

Browse files
committed
Update map.md
1 parent 2ecc3d1 commit 97bafe8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/man/map.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ There are multiple ways to call a function on individual values (observations) o
88
99
## `map!`
1010

11-
The Datasets' `map!` function modifies a data set in-place by calling a function on individual values of a column. The syntax for the function is
11+
The InMemoryDatasets' `map!` function modifies a data set in-place by calling a function on individual values of a column. The syntax for the function is
1212

1313
> `map!(ds, fun, cols; threads = true)`
1414
@@ -187,7 +187,7 @@ julia> ds # map doesn't modify the original data set
187187
5 │ 5 2 0.4
188188
```
189189

190-
In the following example, we `map` some functions on columns of a data set which one the column has a `format`.
190+
In the following example, we `map` some functions on columns of a data set which one of the columns has a `format`.
191191

192192
```jldoctest
193193
julia> ds = Dataset(x1 = 1:5, x2 = [1,2,1,2,1])

0 commit comments

Comments
 (0)