From 176ff1b6f7d6332cafb9021f575e373215acee95 Mon Sep 17 00:00:00 2001
From: Peter Deffebach
Date: Tue, 4 Jun 2024 12:09:59 -0400
Subject: [PATCH] add fix
---
docs/src/index.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/src/index.md b/docs/src/index.md
index 5833f63d..516e4de7 100644
--- a/docs/src/index.md
+++ b/docs/src/index.md
@@ -173,7 +173,7 @@ Perform the grouping and combining operations in one step with `@by`
```
df = DataFrame(x = [1, 1, 2, 2], y = [1, 2, 101, 102]);
@by df :x begin
- :x = sum(:y)
+ :y_sum = sum(:y)
end
```