Skip to content

Commit

Permalink
fix two small typos in docs (#2551)
Browse files Browse the repository at this point in the history
  • Loading branch information
roualdes authored Nov 19, 2020
1 parent b7ece34 commit bb1362e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/src/lib/types.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ It is intended to be created as a result of a call to the `groupby` function.

`DataFrameRow` is a view into a single row of an `AbstractDataFrame`. It stores only a reference
to a parent `DataFrame` and information about which row and columns from the parent are selected
(both as integer indices referring to the parent)
(both as integer indices referring to the parent).
The `DataFrameRow` type supports iteration over columns of the row and is similar in functionality to
the `NamedTuple` type, but allows for modification of data stored in the parent `DataFrame`
and reflects changes done to the parent after the creation of the view.
Expand Down
2 changes: 1 addition & 1 deletion docs/src/man/split_apply_combine.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ each subset of the `DataFrame`. This specification can be of the following forms
vectors of `Symbol`s, vectors of strings,
`All`, `Cols`, `:`, `Between`, `Not` and regular expressions)
2. a `cols => function` pair indicating that `function` should be called with
positional arguments holding columns `cols`, which can be a any valid column selector;
positional arguments holding columns `cols`, which can be any valid column selector;
in this case target column name is automatically generated and it is assumed that
`function` returns a single value or a vector; the generated name is created by
concatenating source column name and `function` name by default (see examples below).
Expand Down
2 changes: 1 addition & 1 deletion src/abstractdataframe/selection.jl
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const TRANSFORMATION_COMMON_RULES =
vectors of `Symbol`s, vectors of strings,
`All`, `Cols`, `:`, `Between`, `Not` and regular expressions)
2. a `cols => function` pair indicating that `function` should be called with
positional arguments holding columns `cols`, which can be a any valid column selector;
positional arguments holding columns `cols`, which can be any valid column selector;
in this case target column name is automatically generated and it is assumed that
`function` returns a single value or a vector; the generated name is created by
concatenating source column name and `function` name by default (see examples below).
Expand Down

0 comments on commit bb1362e

Please sign in to comment.