Skip to content

Commit

Permalink
Fix existing typos in basics.md
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanrboyer committed Oct 12, 2023
1 parent d2d3de8 commit 0bdfc44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/man/basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -1075,7 +1075,7 @@ true

If in indexing you select a subset of rows from a data frame the mutation is
performed in place, i.e. writing to an existing vector.
Below setting values of column `:Job` in rows `1:3` to values `[2, 4, 6]`:
Below setting values of column `:Job` in rows `1:3` to values `[2, 3, 2]`:

```jldoctest dataframe
julia> df1[1:3, :Job] = [2, 3, 2]
Expand Down Expand Up @@ -1181,7 +1181,7 @@ DataFrameRow
2 │ 98 male 2
```

This operations updated the data stored in the `df1` data frame.
These operations updated the data stored in the `df1` data frame.

In a similar fashion views can be used to update data stored in their parent
data frame. Here are some examples:
Expand Down

0 comments on commit 0bdfc44

Please sign in to comment.