Skip to content

Commit

Permalink
docs: fix typo (#3474)
Browse files Browse the repository at this point in the history
  • Loading branch information
agdestein authored Nov 15, 2024
1 parent 85815e4 commit fe635d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/man/comparisons.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ df2 = DataFrame(grp=[1, 3], w=[10, 11])
Some of the operations mutate the tables so every operation assumes that it is done on the original data frame.

Note that in the comparisons presented below predicates like `x -> x >= 1` can
be more compactly written as `=>(1)`. The latter form has an additional benefit
be more compactly written as `>=(1)`. The latter form has an additional benefit
that it is compiled only once per Julia session (as opposed to `x -> x >= 1`
which defines a new anonymous function every time it is introduced).

Expand Down

0 comments on commit fe635d9

Please sign in to comment.