From fdf53542b6fe1228bab178f3938df2bf7ab080e9 Mon Sep 17 00:00:00 2001 From: prql-bot <107324867+prql-bot@users.noreply.github.com> Date: Sun, 19 Jul 2026 07:20:37 +0000 Subject: [PATCH] docs: remove stale `func` from pipe statement keywords `func` no longer begins a statement; it only introduces an anonymous function expression. Functions are declared with `let name = func ...`. --- web/book/src/reference/syntax/pipes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/book/src/reference/syntax/pipes.md b/web/book/src/reference/syntax/pipes.md index 8e3a3dd81f2f..5cc60b375fdd 100644 --- a/web/book/src/reference/syntax/pipes.md +++ b/web/book/src/reference/syntax/pipes.md @@ -29,7 +29,7 @@ where a line break doesn't act as a pipe. - before or after tuple items - before or after array items -- before a new statement, which starts with `let` or `from` (or `func`) +- before a new statement, which starts with `let` or `from` - within a [line wrap](./operators.md#wrapping-lines) For example: