From fe635d98736d0e7d2949ca43993b80175de997b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Syver=20D=C3=B8ving=20Agdestein?= <40632532+agdestein@users.noreply.github.com> Date: Fri, 15 Nov 2024 22:34:06 +0100 Subject: [PATCH] docs: fix typo (#3474) --- docs/src/man/comparisons.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/man/comparisons.md b/docs/src/man/comparisons.md index f8405d106f..bf4adfa660 100644 --- a/docs/src/man/comparisons.md +++ b/docs/src/man/comparisons.md @@ -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).